mirror of
https://github.com/katanemo/plano.git
synced 2026-07-20 16:41:04 +02:00
32 lines
1 KiB
TypeScript
32 lines
1 KiB
TypeScript
"use client";
|
|
|
|
import React from "react";
|
|
import { Navbar } from "@/components/Navbar";
|
|
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 { UnlockPotentialSection } from "@/components/UnlockPotentialSection";
|
|
import { Footer } from "@/components/Footer";
|
|
import { LogoCloud } from "@/components/LogoCloud";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className="min-h-screen">
|
|
<Navbar />
|
|
<main className="pt-20">
|
|
<Hero />
|
|
<LogoCloud />
|
|
<IntroSection />
|
|
<IdeaToAgentSection />
|
|
<UseCasesSection />
|
|
<VerticalCarouselSection />
|
|
<UnlockPotentialSection variant="black" />
|
|
|
|
{/* Rest of the sections will be refactored next */}
|
|
</main>
|
|
<Footer />
|
|
</div>
|
|
);
|
|
}
|