page.tsx 836 B

1234567891011121314151617181920212223242526272829
  1. import Link from "next/link";
  2. import { Hero } from "@/components/landing/hero";
  3. import { CarouselSection } from "@/components/landing/carousel-animation";
  4. import { AboutSection } from "@/components/landing/about-section";
  5. import { HowItWorks } from "@/components/landing/how-it-works";
  6. export default function LandingPage() {
  7. return (
  8. <main className="flex min-h-screen flex-col items-center">
  9. <Hero />
  10. <section className="w-full py-8">
  11. <CarouselSection />
  12. </section>
  13. <div className="py-6">
  14. <Link
  15. href="/login"
  16. className="rounded-xl border border-foreground/20 px-8 py-3 text-lg font-semibold transition-colors hover:bg-foreground/5"
  17. >
  18. Login / Get Started
  19. </Link>
  20. </div>
  21. <AboutSection />
  22. <HowItWorks />
  23. </main>
  24. );
  25. }