2025-04-07 23:47:06 -07:00
|
|
|
"use client";
|
2025-07-27 10:05:37 -07:00
|
|
|
|
2025-10-02 12:43:43 -07:00
|
|
|
import { CTAHomepage } from "@/components/homepage/cta";
|
|
|
|
|
import { FeaturesBentoGrid } from "@/components/homepage/features-bento-grid";
|
2025-10-02 18:10:07 -07:00
|
|
|
import { FeaturesCards } from "@/components/homepage/features-card";
|
|
|
|
|
import { HeroSection } from "@/components/homepage/hero-section";
|
|
|
|
|
import ExternalIntegrations from "@/components/homepage/integrations";
|
2025-04-07 23:47:06 -07:00
|
|
|
|
|
|
|
|
export default function HomePage() {
|
2025-07-27 10:05:37 -07:00
|
|
|
return (
|
|
|
|
|
<main className="min-h-screen bg-gradient-to-b from-gray-50 to-gray-100 text-gray-900 dark:from-black dark:to-gray-900 dark:text-white">
|
2025-10-02 18:10:07 -07:00
|
|
|
<HeroSection />
|
|
|
|
|
<FeaturesCards />
|
2025-10-02 12:43:43 -07:00
|
|
|
<FeaturesBentoGrid />
|
2025-10-02 18:10:07 -07:00
|
|
|
<ExternalIntegrations />
|
2025-10-02 12:43:43 -07:00
|
|
|
<CTAHomepage />
|
2025-07-27 10:05:37 -07:00
|
|
|
</main>
|
|
|
|
|
);
|
|
|
|
|
}
|