10 lines
322 B
TypeScript
10 lines
322 B
TypeScript
"use client";
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<div className="min-h-screen">
|
|
<h1 className="text-4xl font-bold text-center py-8">Aline's Labubu Collection</h1>
|
|
<p className="text-center text-lg px-4">Welcome to my beautiful collection of labubu figures from Spain.</p>
|
|
</div>
|
|
);
|
|
} |