Update src/app/bespoke/page.tsx

This commit is contained in:
2026-04-07 12:39:45 +00:00
parent 15ad771b9f
commit b3c44cd0d7

View File

@@ -8,7 +8,7 @@ import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import { CheckCircle } from "lucide-react";
export default function LandingPage() {
export default function BespokePage() {
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
@@ -23,129 +23,56 @@ export default function LandingPage() {
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Projects",
id: "/projects",
},
{
name: "Bespoke",
id: "/bespoke",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="S2 Enterprises"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Projects", id: "/projects" },
{ name: "Bespoke", id: "/bespoke" },
{ name: "Contact", id: "/contact" },
]}
brandName="S2 Enterprises"
/>
</div>
<div id="bespoke-services" data-section="bespoke-services">
<FeatureCardTen
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
features={[
{
title: "Custom Manufacturing",
description: "Built to your specifications.",
reverse: false,
media: {
imageSrc: "http://img.b2bpic.net/free-photo/modern-hotel-lobby-with-leather-sofa-chairs-lamp-round-tables_1262-12373.jpg?_wi=3",
},
items: [
{
icon: CheckCircle,
text: "Fine Material Selection",
},
{
icon: CheckCircle,
text: "Artisan Craftsmanship",
},
],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BhL89f6L5OznneKMDvRMJusm06/uploaded-1775565521173-0mbzf31i.jpg?_wi=2",
imageAlt: "User provided image",
},
{
title: "Space Planning",
description: "Professional layout design for efficiency.",
reverse: true,
media: {
imageSrc: "http://img.b2bpic.net/free-photo/modern-hotel-lobby-with-leather-sofa-chairs-lamp-round-tables_1262-12373.jpg?_wi=4",
},
items: [
{
icon: CheckCircle,
text: "Office Optimization",
},
{
icon: CheckCircle,
text: "Luxury Aesthetics",
},
],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BhL89f6L5OznneKMDvRMJusm06/uploaded-1775565521174-ij5rybsg.jpg?_wi=2",
imageAlt: "User provided image",
},
{
title: "Material Consultation",
description: "Expert advice on finishings.",
reverse: false,
media: {
imageSrc: "http://img.b2bpic.net/free-photo/modern-hotel-lobby-with-leather-sofa-chairs-lamp-round-tables_1262-12373.jpg?_wi=5",
},
items: [
{
icon: CheckCircle,
text: "Sustainable Sourcing",
},
{
icon: CheckCircle,
text: "Durable Finishes",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-antique-store_23-2149640694.jpg",
imageAlt: "luxury interior design bespoke furniture",
},
]}
title="Bespoke Services"
description="Customized manufacturing and space planning."
/>
</div>
<div id="bespoke-services" data-section="bespoke-services">
<FeatureCardTen
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Bespoke Services"
description="Customized manufacturing and space planning."
features={[
{
title: "Custom Manufacturing", description: "Built to your specifications.", reverse: false,
media: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BhL89f6L5OznneKMDvRMJusm06/uploaded-1775565521173-0mbzf31i.jpg", imageAlt: "User provided image" },
items: [{ icon: CheckCircle, text: "Fine Material Selection" }, { icon: CheckCircle, text: "Artisan Craftsmanship" }]
},
{
title: "Space Planning", description: "Professional layout design for efficiency.", reverse: true,
media: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BhL89f6L5OznneKMDvRMJusm06/uploaded-1775565521174-ij5rybsg.jpg", imageAlt: "User provided image" },
items: [{ icon: CheckCircle, text: "Office Optimization" }, { icon: CheckCircle, text: "Luxury Aesthetics" }]
},
{
title: "Material Consultation", description: "Expert advice on finishings.", reverse: false,
media: { imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-antique-store_23-2149640694.jpg", imageAlt: "luxury interior design bespoke furniture" },
items: [{ icon: CheckCircle, text: "Sustainable Sourcing" }, { icon: CheckCircle, text: "Durable Finishes" }]
}
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
useInvertedBackground={false}
background={{
variant: "plain",
}}
tag="Bespoke"
title="Schedule a Design Consultation"
description="Our experts are ready to turn your vision into reality."
imageSrc="http://img.b2bpic.net/free-photo/modern-hotel-lobby-with-leather-sofa-chairs-lamp-round-tables_1262-12373.jpg?_wi=6"
mediaAnimation="slide-up"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="S2 Enterprises"
leftLink={{
text: "Privacy Policy",
href: "/privacy",
}}
rightLink={{
text: "Terms & Conditions",
href: "/terms",
}}
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
useInvertedBackground={false}
background={{ variant: "plain" }}
tag="Bespoke"
title="Schedule a Design Consultation"
description="Our experts are ready to turn your vision into reality."
imageSrc="http://img.b2bpic.net/free-photo/modern-hotel-lobby-with-leather-sofa-chairs-lamp-round-tables_1262-12373.jpg"
mediaAnimation="slide-up"
/>
</div>
</ReactLenis>
</ThemeProvider>
);