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.
 
 
 
 

28 lines
697 B

import {
Header,
HeroSection,
DashboardSection,
AiCopilotSection,
StepsSection,
VoiceAgentSection,
TaskAnalysisSection,
} 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 />
</div>
</main>
);
}