4 Commits

Author SHA1 Message Date
9e258ec89a Merge version_2 into main
Merge version_2 into main
2026-05-25 14:15:24 +00:00
fa1fe1a4ad Update src/app/page.tsx 2026-05-25 14:15:18 +00:00
1292a9f42d Merge version_1 into main
Merge version_1 into main
2026-05-25 14:12:54 +00:00
6c581ae59e Merge version_1 into main
Merge version_1 into main
2026-05-25 14:12:30 +00:00

View File

@@ -9,6 +9,7 @@ import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import TextAbout from '@/components/sections/about/TextAbout';
export default function LandingPage() {
@@ -31,7 +32,7 @@ export default function LandingPage() {
navItems={[
{ name: "Ritual", id: "hero" },
{ name: "Craft", id: "experience" },
{ name: "Menu", id: "products" },
{ name: "About", id: "about" },
{ name: "Location", id: "contact" },
]}
brandName="WOLFØX MADRID"
@@ -63,6 +64,16 @@ export default function LandingPage() {
/>
</div>
<div id="about" data-section="about">
<TextSplitAbout
useInvertedBackground={true}
title="About WOLFØX"
description={[
"Founded in the heart of Madrid, WOLFØX is more than a café; it's a sanctuary for coffee purists.", "Our beans are meticulously sourced and roasted in small batches to honor the craft.", "Whether you're starting your morning ritual or seeking a quiet respite, we invite you to experience the difference of intentional coffee."
]}
/>
</div>
<div id="products" data-section="products">
<ProductCardThree
textboxLayout="split"
@@ -133,6 +144,7 @@ export default function LandingPage() {
{
title: "Navigation", items: [
{ label: "Ritual", href: "#hero" },
{ label: "About", href: "#about" },
{ label: "Location", href: "#contact" }
]
},
@@ -149,4 +161,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}