Loading...
Loading...
> Site footer with navigation links, tech stack display, and copyright information.
1import { Footer } from "@/components/shared/footer";23export default function LandingPage() {4 return (5 <main>6 <HeroSection />7 <FeaturesSection />8 <PricingSection />9 <TestimonialsSection />10 <FAQSection />11 <Footer />12 </main>13 );14}
1<footer className="border-t p-6">2 <div className="flex justify-between items-center">3 <p className="text-sm text-muted-foreground">4 © 2024 Your Company5 </p>6 <nav className="flex gap-4">7 <Link href="/privacy">Privacy</Link>8 <Link href="/terms">Terms</Link>9 </nav>10 </div>11</footer>
| Prop | Type | Default | Description |
|---|---|---|---|
| links | { category: string; items: { label: string; href: string }[] }[] | - | Organized link columns |
| showTechStack | boolean | true | Display tech stack badges |
| socialLinks | { platform: string; href: string }[] | - | Social media links |