-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from AYANscyy2/fix-route
feat:changed navigation url of landing page
- Loading branch information
Showing
4 changed files
with
29 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,32 @@ | ||
'use client'; | ||
|
||
import Link from 'next/link'; | ||
import AboutUs from '@/components/about-us/about-us'; | ||
import CampusAmbasador from '@/components/campusAmbasador/CampusAmbasador'; | ||
import CommunityPartnerSection from '@/components/communityPartners/CommunityPartners'; | ||
import Gallery from '@/components/gallery/gallery'; | ||
import Hero from '@/components/hero/hero'; | ||
import Prizes from '@/components/prizes/prizes'; | ||
import Questions from '@/components/questions/Questions'; | ||
import { PastSponsors, Sponsors } from '@/components/sponsors/sponsors'; | ||
import { StatsMain } from '@/components/stats/stats-main'; | ||
import Timeline from '@/components/timeline/timeline'; | ||
|
||
// import Link from 'next/link'; | ||
|
||
export default function Home() { | ||
return ( | ||
<div> | ||
<Link href={'/playground'}> | ||
<h3>Go to Playground</h3> | ||
</Link> | ||
<div className='flex flex-col items-center justify-center w-full h-full px-0 md:px-5'> | ||
<Hero /> | ||
<AboutUs /> | ||
<StatsMain /> | ||
<Prizes /> | ||
<Gallery /> | ||
<Timeline /> | ||
<Sponsors /> | ||
<PastSponsors /> | ||
<CommunityPartnerSection /> | ||
<CampusAmbasador /> | ||
<Questions /> | ||
</div> | ||
); | ||
} |
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