Skip to content

Commit

Permalink
add anchors
Browse files Browse the repository at this point in the history
  • Loading branch information
leehack committed Sep 13, 2024
1 parent 49bf487 commit b2fff0a
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions src/app/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,22 @@ import Venue from '@/components/sections/Venue';

export default function Home() {
return (
<div className="flex flex-col justify-around gap-20">
<EventHeader eventData={eventHeader} />
<EventPhotos />
<Sponsors />
<Communities />
<Venue venueData={venue} />
<div className="flex flex-col justify-around gap-20" >
<section id="event" className="scroll-mt-20">
<EventHeader eventData={eventHeader} />
</section>
<section id="photos" className="scroll-mt-20">
<EventPhotos />
</section>
<section id="sponsors" className="scroll-mt-20">
<Sponsors />
</section>
<section id="communities" className="scroll-mt-20">
<Communities />
</section>
<section id="venue" className="scroll-mt-20">
<Venue venueData={venue} />
</section>
</div>
);
}

0 comments on commit b2fff0a

Please sign in to comment.