Git Product home page Git Product logo

akm-frame_page's Introduction

PageFrame - Easy Landing Page Framework

PageFrame is a lightweight PHP framework designed to help you create effective landing pages with ease. With PageFrame, you can manage all the data you want to display on your landing page, such as email addresses, phone numbers, and more, in different variables. This allows you to update and customize your landing page content effortlessly.

Features

  • Variable-based Content: Store different types of content in variables for easy management and customization.

  • Simplified Design: Create stylish landing pages with a clean and straightforward design.

  • Customization: Customize your landing page by simply modifying variables, making it easy to update contact information or other details.

Getting Started

Installation

To get started with PageFrame, follow these steps:

  1. Install Composer (if not already installed): Composer Installation

  2. Create a new PageFrame project using Composer:

    composer create-project akm/page-frame
  3. Start building your landing page by modifying the variables in the framework.

Usage

  1. Open the public/index.php file in your project directory.

  2. Update the variables in the file to reflect the content you want on your landing page. For example:

    $email = "[email protected]";
    $phone = "+1 (123) 456-7890";
    // Add more variables as needed
  3. Customize the HTML and CSS in the public/index.php file to match your desired landing page design.

  4. Save your changes.

  5. Access your landing page by opening it in a web browser.

Example

Here's an example of how you can use PageFrame to create a simple landing page:

<?php
// public/index.php

$email = "[email protected]";
$phone = "+1 (123) 456-7890";
?>

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>My Landing Page</title>
</head>
<body>
    <header>
        <h1>Welcome to My Landing Page</h1>
    </header>
    <main>
        <p>Contact us at:</p>
        <ul>
            <li>Email: <?php echo $email; ?></li>
            <li>Phone: <?php echo $phone; ?></li>
        </ul>
    </main>
    <footer>
        <p>&copy; <?php echo date("Y"); ?> My Company</p>
    </footer>
</body>
</html>

Contributing

If you'd like to contribute to PageFrame, please feel free to open issues, submit pull requests, or reach out to the project maintainers.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgments

  • PageFrame was created by Ajay Mankani.

Contact

If you have any questions or feedback, you can reach us at [email protected].

akm-frame_page's People

Contributors

ajaykmankani avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.