- Hero auto-rotates story backdrops every 5 seconds with 500ms fade transitions - ProductShowcase cards rotate with mint ring highlight on the active card - Inactive cards fade to 60% opacity on mobile, full opacity on desktop - New components: StoryBackdrop, StoryOnboarding, CountUp, lib/stories - Manual Another-story control still works Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
19 lines
476 B
TypeScript
19 lines
476 B
TypeScript
import { Hero } from "@/components/marketing/Hero";
|
|
import { Navbar } from "@/components/marketing/Navbar";
|
|
import { FAQ, FooterCTA, Manifesto, Pricing, ProductShowcase, StatsBand } from "@/components/marketing/Sections";
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<main className="bg-[#0A0A09]">
|
|
<Navbar />
|
|
<Hero />
|
|
<ProductShowcase />
|
|
<StatsBand />
|
|
<Manifesto />
|
|
<Pricing />
|
|
<FAQ />
|
|
<FooterCTA />
|
|
</main>
|
|
);
|
|
}
|