almaze-app/app/page.tsx
2025-02-11 21:52:34 +05:30

27 lines
750 B
TypeScript

import Header from "./home/Header";
// import CTABox from "./home/CTABox";
import Footer from "./home/Footer";
import HeroSection from "@/app/home/HeroSection";
import FeaturesSection from "@/app/home/FeaturesSection";
import AgentsSection from "@/app/home/AgentsSection";
import TokenomicsSection from "@/app/home/TokenomicsSection";
import RoadmapSection from "@/app/home/RoadmapSection";
import { Providers } from "@/components/providers/privy-provider";
export default function Home() {
return (
<Providers>
<main>
<Header />
<HeroSection />
<FeaturesSection />
<AgentsSection />
<TokenomicsSection />
<RoadmapSection />
{/* <CTABox /> */}
<Footer />
</main>
</Providers>
);
}