Files
asset-homepage/app/page.tsx

26 lines
781 B
TypeScript
Raw Normal View History

2026-01-27 17:26:30 +08:00
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>
);
}