mirror of
https://github.com/katanemo/plano.git
synced 2026-04-30 19:36:34 +02:00
* include contact and navbar changes * removereact references * tweak contacts APi route * change font
27 lines
884 B
TypeScript
27 lines
884 B
TypeScript
"use client";
|
|
|
|
import { Hero } from "@/components/Hero";
|
|
import { IntroSection } from "@/components/IntroSection";
|
|
import { IdeaToAgentSection } from "@/components/IdeaToAgentSection";
|
|
import { UseCasesSection } from "@/components/UseCasesSection";
|
|
import { VerticalCarouselSection } from "@/components/VerticalCarouselSection";
|
|
import { HowItWorksSection } from "@/components/HowItWorksSection";
|
|
import { UnlockPotentialSection } from "@/components/UnlockPotentialSection";
|
|
import { LogoCloud } from "@/components/LogoCloud";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<Hero />
|
|
<LogoCloud />
|
|
<IntroSection />
|
|
<IdeaToAgentSection />
|
|
<UseCasesSection />
|
|
<VerticalCarouselSection />
|
|
<HowItWorksSection />
|
|
<UnlockPotentialSection variant="transparent" />
|
|
|
|
{/* Rest of the sections will be refactored next */}
|
|
</>
|
|
);
|
|
}
|