43 lines
1.6 KiB
TypeScript
43 lines
1.6 KiB
TypeScript
import Link from "next/link";
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<div className="container mx-auto px-4 py-16">
|
|
<div className="max-w-3xl mx-auto text-center">
|
|
<h1 className="text-4xl md:text-6xl font-bold mb-6">
|
|
Mycopunk Swag Store
|
|
</h1>
|
|
<p className="text-xl text-muted-foreground mb-8">
|
|
Mycelial merchandise for the decentralized future. Stickers, shirts,
|
|
and more featuring designs from the mycopunk movement.
|
|
</p>
|
|
<div className="flex gap-4 justify-center">
|
|
<Link
|
|
href="/products"
|
|
className="inline-flex items-center justify-center rounded-md bg-primary px-8 py-3 text-lg font-medium text-primary-foreground hover:bg-primary/90 transition-colors"
|
|
>
|
|
Browse Products
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="mt-24">
|
|
<h2 className="text-2xl font-bold text-center mb-12">Featured</h2>
|
|
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
|
|
<div className="border rounded-lg overflow-hidden hover:shadow-lg transition-shadow">
|
|
<div className="aspect-square bg-muted flex items-center justify-center">
|
|
<span className="text-muted-foreground">Coming Soon</span>
|
|
</div>
|
|
<div className="p-4">
|
|
<h3 className="font-semibold">Build Tools Not Empires</h3>
|
|
<p className="text-sm text-muted-foreground">Sticker</p>
|
|
<p className="font-bold mt-2">$3.50</p>
|
|
</div>
|
|
</div>
|
|
{/* More products will be loaded from API */}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|