8 Commits

Author SHA1 Message Date
cef7d7c509 Merge version_3 into main
Merge version_3 into main
2025-12-19 22:22:06 +00:00
00d3a36823 Update src/app/page.tsx 2025-12-19 22:22:01 +00:00
ebca108a5d Update src/app/layout.tsx 2025-12-19 22:22:01 +00:00
3064d1b54f Merge version_3 into main
Merge version_3 into main
2025-12-19 22:21:03 +00:00
1958aa1707 Update src/app/page.tsx 2025-12-19 22:20:58 +00:00
041dff92ba Update src/app/layout.tsx 2025-12-19 22:20:58 +00:00
7be1959ab8 Merge version_2 into main
Merge version_2 into main
2025-12-19 22:17:49 +00:00
c6f2f9f58c Merge version_2 into main
Merge version_2 into main
2025-12-19 22:16:37 +00:00

View File

@@ -1,10 +1,31 @@
"use client"; "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import HeroLogoBillboard from "@/components/sections/hero/HeroLogoBillboard";
export default function LandingPage() { export default function LandingPage() {
return ( return (
<div className="min-h-screen"> <ThemeProvider
<h1 className="text-4xl font-bold text-center py-8">Aline's Labubu Collection</h1> defaultButtonVariant="hover-magnetic"
<p className="text-center text-lg px-4">Welcome to my beautiful collection of labubu figures from Spain.</p> defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="large"
sizing="medium"
background="none"
cardStyle="solid"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="semibold"
>
<div id="hero" data-section="hero">
<HeroLogoBillboard
logoText="Aline's Labubu Collection"
description="Welcome to my beautiful collection of labubu figures from Spain. Explore curated pieces, collector stories, and discover the magic of these charming collectibles."
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766182310902-lq5rakkm.jpg"
imageAlt="Aline's Labubu collection showcase"
frameStyle="card"
/>
</div> </div>
</ThemeProvider>
); );
} }