feat: add Header with Sign In to landing page

- Wrapped LandingPageClient with LandingPageWrapper
- Header now shows Sign In button next to Get Started
- Mobile menu also includes Sign In option
- Fixed Plus Jakarta Sans font import
This commit is contained in:
2026-06-02 16:07:43 +00:00
parent f55f0551f9
commit c5509f53f9
2 changed files with 7 additions and 4 deletions
+6 -3
View File
@@ -2,6 +2,7 @@
import { useEffect, useRef } from "react";
import HeroSection from "@/components/landing/HeroSection";
import { LandingPageWrapper } from "@/components/landing/LandingPageWrapper";
import { gsap } from "gsap";
import { ScrollTrigger } from "gsap/ScrollTrigger";
@@ -43,8 +44,10 @@ export default function LandingPageClient() {
}, []);
return (
<div ref={mainRef}>
<HeroSection />
</div>
<LandingPageWrapper>
<div ref={mainRef}>
<HeroSection />
</div>
</LandingPageWrapper>
);
}