Merge version_1 into main #2

Merged
bender merged 2 commits from version_1 into main 2026-04-07 12:39:49 +00:00
2 changed files with 100 additions and 215 deletions

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>
);

View File

@@ -8,7 +8,7 @@ import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import { Shield, Star } from "lucide-react";
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
@@ -23,101 +23,59 @@ 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="full-contact" data-section="full-contact">
<ContactSplit
useInvertedBackground={false}
background={{
variant: "canvas-reveal",
}}
tag="Contact"
title="Get In Touch"
description="Reach out for personal consultations or project quotes."
imageSrc="http://img.b2bpic.net/free-photo/modern-hotel-lobby-with-leather-sofa-chairs-lamp-round-tables_1262-12373.jpg?_wi=7"
mediaAnimation="slide-up"
/>
</div>
<div id="full-contact" data-section="full-contact">
<ContactSplit
useInvertedBackground={false}
background={{ variant: "canvas-reveal" }}
tag="Contact"
title="Get In Touch"
description="Reach out for personal consultations or project quotes."
imageSrc="http://img.b2bpic.net/free-photo/modern-hotel-lobby-with-leather-sofa-chairs-lamp-round-tables_1262-12373.jpg"
mediaAnimation="slide-up"
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardTen
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Why Choose Us"
description="The difference is in the details."
features={[
{
title: "Quality First",
description: "Only the best materials used.",
reverse: false,
media: {
imageSrc: "http://img.b2bpic.net/free-photo/modern-hotel-lobby-with-leather-sofa-chairs-lamp-round-tables_1262-12373.jpg?_wi=8",
},
items: [
{
icon: Shield,
text: "Warranty Included",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/modern-hotel-lobby-with-leather-sofa-chairs-lamp-round-tables_1262-12373.jpg?_wi=9",
imageAlt: "professional interior design meeting room",
},
{
title: "Design Excellence",
description: "Tailored for your taste.",
reverse: true,
media: {
imageSrc: "http://img.b2bpic.net/free-photo/modern-hotel-lobby-with-leather-sofa-chairs-lamp-round-tables_1262-12373.jpg?_wi=10",
},
items: [
{
icon: Star,
text: "Award Winning Designers",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/everyday-bath-utensils-dark-marble-background_58702-17689.jpg?_wi=13",
imageAlt: "bespoke designer coffee table wood gold",
},
]}
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardTen
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Why Choose Us"
description="The difference is in the details."
features={[
{
title: "Quality First", description: "Only the best materials used.", reverse: false,
media: { imageSrc: "http://img.b2bpic.net/free-photo/modern-hotel-lobby-with-leather-sofa-chairs-lamp-round-tables_1262-12373.jpg", imageAlt: "professional interior design meeting room" },
items: [{ icon: Shield, text: "Warranty Included" }]
},
{
title: "Design Excellence", description: "Tailored for your taste.", reverse: true,
media: { imageSrc: "http://img.b2bpic.net/free-photo/modern-hotel-lobby-with-leather-sofa-chairs-lamp-round-tables_1262-12373.jpg", imageAlt: "bespoke designer coffee table wood gold" },
items: [{ icon: Star, text: "Award Winning Designers" }]
}
]}
/>
</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="footer" data-section="footer">
<FooterLogoReveal
logoText="S2 Enterprises"
leftLink={{ text: "Privacy Policy", href: "/privacy" }}
rightLink={{ text: "Terms & Conditions", href: "/terms" }}
/>
</div>
</ReactLenis>
</ThemeProvider>
);