26 lines
781 B
TypeScript
26 lines
781 B
TypeScript
|
|
import Navbar from '@/components/Navbar';
|
||
|
|
import HeroSection from '@/components/HeroSection';
|
||
|
|
import StatsSection from '@/components/StatsSection';
|
||
|
|
import TrustedBySection from '@/components/TrustedBySection';
|
||
|
|
import WhyAssetXSection from '@/components/WhyAssetXSection';
|
||
|
|
import HowItWorksSection from '@/components/HowItWorksSection';
|
||
|
|
import SecuritySection from '@/components/SecuritySection';
|
||
|
|
import Footer from '@/components/Footer';
|
||
|
|
|
||
|
|
export default function Home() {
|
||
|
|
return (
|
||
|
|
<div className="min-h-screen bg-white">
|
||
|
|
<Navbar />
|
||
|
|
<div className="pt-[80px]">
|
||
|
|
<HeroSection />
|
||
|
|
<StatsSection />
|
||
|
|
<TrustedBySection />
|
||
|
|
<WhyAssetXSection />
|
||
|
|
<HowItWorksSection />
|
||
|
|
<SecuritySection />
|
||
|
|
<Footer />
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|