Quick Start Guide
Welcome to the quick start guide! In just a few steps, you will have your static presentation page up and running. Follow the instructions below to get started.
Step 1: Copy Example Page Files
To set up your static presentation page, you need to copy everything from the example-page folder into the root page.tsx file. Here's how:
- Open your project directory.
- Navigate to the
app/example-pagefolder. - Copy all the contents of the
example-pagefolder. - Paste the copied contents into the root
page.tsxfile.
cp -r app/example-page/* app/page.tsx
Step 2: Verify Your Setup
Once you have copied the files, your project should be good to go! You now have a static presentation page. To verify:
- Start your development server:
npm run dev - Open your browser and navigate to
http://localhost:3000to see your static presentation page in action.
Step 3: Customize Your Page
If you need to customize your presentation page, you can easily do so using the components available in the components directory. Here are a few tips:
- Reusability: The
componentsdirectory contains reusable React components. You can use these to build custom sections and elements on your page. - Modularity: By leveraging these components, you ensure that your code remains modular and maintainable.
Next Steps
That's it! Your static presentation page is now live, and you're ready to start customizing it to fit your needs. If you have any questions or need further assistance, feel free to reach out.
Happy coding!