mirror of
https://github.com/arthur-pbty/flint.git
synced 2026-08-01 20:29:03 +02:00
22 lines
580 B
TypeScript
22 lines
580 B
TypeScript
import Hero from "../components/Hero";
|
|
import Features from "../components/Features";
|
|
import HowItWorks from "../components/HowItWorks";
|
|
import Footer from "../components/Footer";
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<main className="min-h-screen bg-gradient-to-b from-gray-900 via-gray-950 to-black text-gray-100 antialiased">
|
|
<div className="container mx-auto px-6 py-16 lg:py-24">
|
|
<Hero />
|
|
|
|
<div className="mt-16 space-y-20">
|
|
<Features />
|
|
<HowItWorks />
|
|
</div>
|
|
</div>
|
|
|
|
<Footer />
|
|
</main>
|
|
);
|
|
}
|