-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
14c14f6
commit 72e912b
Showing
3 changed files
with
13 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,17 @@ | ||
import { Link } from 'react-router-dom'; | ||
import { Button } from '../components/ui/button'; | ||
import AboutUs from '../components/AboutUs'; | ||
import FAQ from '../components/FaqSection/faq'; | ||
import Hero from '../components/Hero'; | ||
import Navbar from '../components/shared/NavBar'; | ||
import Footer from '../components/shared/marginals/footer'; | ||
|
||
export default function Home() { | ||
return ( | ||
<div className='container py-6'> | ||
<h1 className='text-3xl font-bold'>1999 Reunion Tour</h1> | ||
<div className='mt-4'> | ||
<h2 className='text-xl font-bold'>How to contribute</h2> | ||
<p> | ||
1. Store content and other data in <code className='bg-gray-200 p-1 rounded-sm'>data</code> folder. | ||
</p> | ||
<p> | ||
2. Store reusable components in <code className='bg-gray-200 p-1'>components</code> folder. | ||
</p> | ||
<p> | ||
3. Store pages in <code className='bg-gray-200 p-1'>pages</code> folder. | ||
</p> | ||
<p> | ||
4. Add custom styles in <code className='bg-gray-200 p-1'>tailwind.config.css</code> file. | ||
</p> | ||
<p> | ||
5. Add shared ui in <code className='bg-gray-200 p-1'>ui</code> folder. | ||
</p> | ||
<p> | ||
6. Add images and other assets in <code className='bg-gray-200 p-1'>assets</code> folder. | ||
</p> | ||
</div> | ||
<Link to='/play'> | ||
<Button>Go to playground</Button> | ||
</Link> | ||
<div className=''> | ||
<Navbar /> | ||
<Hero /> | ||
<AboutUs /> | ||
<FAQ /> | ||
<Footer /> | ||
</div> | ||
); | ||
} |