You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
958 B
39 lines
958 B
import {
|
|
Header,
|
|
HeroSection,
|
|
DashboardSection,
|
|
AiCopilotSection,
|
|
StepsSection,
|
|
VoiceAgentSection,
|
|
TaskAnalysisSection,
|
|
TeambyAssistSection,
|
|
StatsSection,
|
|
PricingSection,
|
|
CallToActionSection,
|
|
FaqSection,
|
|
Footer,
|
|
} from "@/components/sections";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main className="relative w-full min-h-screen bg-[#03070D] text-white flex flex-col items-center overflow-x-hidden">
|
|
{/* 1920px Canvas Wrapper */}
|
|
<div className="relative w-full max-w-[1920px] min-h-[1649px] mx-auto overflow-hidden bg-[#03070D]">
|
|
<Header />
|
|
<HeroSection />
|
|
<DashboardSection />
|
|
<AiCopilotSection />
|
|
<StepsSection />
|
|
<VoiceAgentSection />
|
|
<TaskAnalysisSection />
|
|
<TeambyAssistSection />
|
|
<StatsSection />
|
|
<CallToActionSection />
|
|
<PricingSection />
|
|
<FaqSection />
|
|
<Footer />
|
|
</div>
|
|
</main>
|
|
);
|
|
}
|
|
|