20 lines
629 B
TypeScript
20 lines
629 B
TypeScript
import { HeroSection } from '@/components/hero-section'
|
|
import { ManifestoSection } from '@/components/manifesto-section'
|
|
import { DeviceSection } from '@/components/device-section'
|
|
import { NetworkSection } from '@/components/network-section'
|
|
import { WaitlistSection } from '@/components/waitlist-section'
|
|
import { FooterSection } from '@/components/footer-section'
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main className="min-h-screen noise-texture">
|
|
<HeroSection />
|
|
<ManifestoSection />
|
|
<DeviceSection />
|
|
<NetworkSection />
|
|
<WaitlistSection />
|
|
<FooterSection />
|
|
</main>
|
|
)
|
|
}
|