Skip to content

Commit

Permalink
Navbar changes (#596)
Browse files Browse the repository at this point in the history
* Navbar changes

* Linting fix and Home button now works

---------

Co-authored-by: Kevin Monisit <[email protected]>
  • Loading branch information
dchaudhari0811 and kevinmonisit committed Oct 4, 2023
1 parent d407f80 commit a886edb
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 7 deletions.
22 changes: 16 additions & 6 deletions src/components/_Landing/Landing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,26 @@ function LandingPage(props: any) {
/>

<Hero profile={props.profile} />
<SectionTitle title="ABOUT" />
<div id="About"
className="pt-3">
<SectionTitle title="ABOUT" />
</div>
<About />

<SectionTitle title="SCHEDULE" />
<div id="Schedule"
className="pt-3">
<SectionTitle title="SCHEDULE" />
</div>
<Schedule />

<SectionTitle title="SPONSORS" />
<div id="Sponsors"
className="pt-3">
<SectionTitle title="SPONSORS" />
</div>
<Sponsors />

<SectionTitle title="FAQ" />
<div id="FAQ"
className="pt-3">
<SectionTitle title="FAQ" />
</div>
<FAQ />

<Footer />
Expand Down
4 changes: 3 additions & 1 deletion src/components/_Landing/sections/hero/hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ function Hero(props: { profile: Profile }) {


return (
<div className="w-[100%] h-[100vh] px-5
<div
id="Home"
className="w-[100%] h-[100vh] px-5
flex text-white
flex-col items-center text-center justify-start md:justify-start relative
md:min-h-[1060px] min-h-[940px]
Expand Down

0 comments on commit a886edb

Please sign in to comment.