Compare commits
18 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9916016f9d | |||
| 7c5b2ae748 | |||
| c9e56bb357 | |||
| 7300623783 | |||
| 2a3ea603f3 | |||
| ef05ad1f0d | |||
| 2188f460ec | |||
| 18f7a554c4 | |||
| 9f17bed356 | |||
| 1ec50511c2 | |||
| dc3ebf978f | |||
| 564ffa4b1a | |||
| 2a5e3f5583 | |||
| 4e5541d7af | |||
| 8c5999dae8 | |||
| 3f33e67b39 | |||
| 40366cc63e | |||
| ba1a1053cf |
@@ -8,10 +8,10 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|||||||
|
|
||||||
export default function BookingPage() {
|
export default function BookingPage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Our Process", id: "about" },
|
{ name: "Our Process", id: "/#about" },
|
||||||
{ name: "Services", id: "services" },
|
{ name: "Services", id: "/#services" },
|
||||||
{ name: "Testimonials", id: "testimonials" },
|
{ name: "Testimonials", id: "/#testimonials" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "/#contact" },
|
||||||
{ name: "Book Appointment", id: "/booking" }
|
{ name: "Book Appointment", id: "/booking" }
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -31,12 +31,14 @@ export default function BookingPage() {
|
|||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={navItems}
|
navItems={navItems}
|
||||||
brandName="Elegance Builders"
|
brandName="RVNCO"
|
||||||
|
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EmVnHWEkxgx6AZzVQiLfPfH8Wh/uploaded-1780792442622-djoqlv6h.png"
|
||||||
button={{ text: "Book a Consultation", href: "/booking" }}
|
button={{ text: "Book a Consultation", href: "/booking" }}
|
||||||
|
logoClassName="!w-48"
|
||||||
/>
|
/>
|
||||||
<div id="booking" data-section="booking" className="py-20 lg:py-32">
|
<div id="booking" data-section="booking" className="py-20 lg:py-32">
|
||||||
<ContactText
|
<ContactText
|
||||||
text="Schedule your consultation with Elegance Builders. Let's discuss your luxury design and build project."
|
text="Schedule your consultation with RVNCO. Let's discuss your luxury design and build project."
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
buttons={[
|
buttons={[
|
||||||
@@ -50,19 +52,19 @@ export default function BookingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<FooterLogoEmphasis
|
<FooterLogoEmphasis
|
||||||
logoText="Elegance Builders"
|
logoText="RVNCO"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{ label: "Our Process", href: "#about" },
|
{ label: "Our Process", href: "/#about" },
|
||||||
{ label: "Services", href: "#services" },
|
{ label: "Services", href: "/#services" },
|
||||||
{ label: "Testimonials", href: "#testimonials" }
|
{ label: "Testimonials", href: "/#testimonials" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{ label: "FAQ", href: "#faq" },
|
{ label: "FAQ", href: "/#faq" },
|
||||||
{ label: "Contact", href: "#contact" },
|
{ label: "Contact", href: "/#contact" },
|
||||||
{ label: "Book a Consultation", href: "/booking" }
|
{ label: "Book a Consultation", href: "/booking" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -19,8 +19,8 @@ const inter = Inter({
|
|||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: 'Luxury Design & Build | Bespoke Homes & Renovations',
|
title: 'RVNCO | Luxury Design & Build | Bespoke Homes & Renovations',
|
||||||
description: 'Experience seamless luxury design and build. From new custom homes to exquisite renovations, kitchens, and bathrooms, we manage your project from concept to completion. Book your consultation.',
|
description: 'Experience seamless luxury design and build with RVNCO. From new custom homes to exquisite renovations, kitchens, and bathrooms, we manage your project from concept to completion. Book your consultation.',
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
|
|||||||
114
src/app/page.tsx
114
src/app/page.tsx
@@ -14,10 +14,11 @@ import { Sparkles, Home, Paintbrush, Utensils, Hammer } from "lucide-react";
|
|||||||
|
|
||||||
export default function BusinessCoachTemplatePage() {
|
export default function BusinessCoachTemplatePage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Our Process", id: "about" },
|
{ name: "Our Process", id: "/#about" },
|
||||||
{ name: "Services", id: "services" },
|
{ name: "Services", id: "/#services" },
|
||||||
{ name: "Testimonials", id: "testimonials" },
|
{ name: "Testimonials", id: "/#testimonials" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "/#contact" },
|
||||||
|
{ name: "Book Appointment", id: "/booking" }
|
||||||
];
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@@ -36,8 +37,10 @@ export default function BusinessCoachTemplatePage() {
|
|||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={navItems}
|
navItems={navItems}
|
||||||
brandName="Elegance Builders"
|
brandName="RVNCO"
|
||||||
button={{ text: "Book a Consultation", href: "#contact" }}
|
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EmVnHWEkxgx6AZzVQiLfPfH8Wh/uploaded-1780792442622-djoqlv6h.png"
|
||||||
|
button={{ text: "Book a Consultation", href: "/booking" }}
|
||||||
|
logoClassName="!w-48"
|
||||||
/>
|
/>
|
||||||
<HeroSplitDualMedia
|
<HeroSplitDualMedia
|
||||||
background={{ variant: "radial-gradient" }}
|
background={{ variant: "radial-gradient" }}
|
||||||
@@ -47,13 +50,13 @@ export default function BusinessCoachTemplatePage() {
|
|||||||
description="We seamlessly integrate design, build, and project management, specializing in transformative luxury renovations and bespoke new builds. Your dream home, meticulously realized."
|
description="We seamlessly integrate design, build, and project management, specializing in transformative luxury renovations and bespoke new builds. Your dream home, meticulously realized."
|
||||||
mediaItems={[
|
mediaItems={[
|
||||||
{ imageSrc: "http://img.b2bpic.net/free-photo/modern-living-room-with-blue-accent-wall_23-2151995376.jpg", imageAlt: "Luxury living room with modern design" },
|
{ imageSrc: "http://img.b2bpic.net/free-photo/modern-living-room-with-blue-accent-wall_23-2151995376.jpg", imageAlt: "Luxury living room with modern design" },
|
||||||
{ imageSrc: "http://img.b2bpic.net/free-photo/image-engineering-objects-workplace-top-view-construction-concept-engineering-tools-vintage-tone-retro-filter-effect-soft-focus-selective-focus_1418-470.jpg", imageAlt: "Architectural drawing or sophisticated home exterior" },
|
{ imageSrc: "http://img.b2bpic.net/free-photo/image-engineering-objects-workplace-top-view-construction-concept-engineering-tools-vintage-tone-retro-filter-effect-soft-focus-selective-focus_1418-470.jpg", imageAlt: "Architectural drawing or sophisticated home exterior" }
|
||||||
]}
|
]}
|
||||||
rating={5}
|
rating={5}
|
||||||
ratingText="Trusted by Discerning Homeowners"
|
ratingText="Trusted by Discerning Homeowners"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Start Your Project", href: "#contact" },
|
{ text: "Start Your Project", href: "/#contact" },
|
||||||
{ text: "View Our Work", href: "#services" },
|
{ text: "View Our Work", href: "/#services" }
|
||||||
]}
|
]}
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
@@ -67,58 +70,61 @@ export default function BusinessCoachTemplatePage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Custom New Builds", description: "Crafting bespoke luxury homes from the ground up, tailored to your unique vision and lifestyle with precision and artistry.", icon: Home,
|
title: "Custom New Builds", description: "Crafting bespoke luxury homes from the ground up, tailored to your unique vision and lifestyle with precision and artistry.", icon: Home,
|
||||||
mediaItems: [
|
mediaItems: [
|
||||||
{ imageSrc: "http://img.b2bpic.net/free-photo/young-couple-moving-new-home_23-2149242081.jpg", imageAlt: "Stylish home interior (new build)" },
|
{ imageSrc: "http://img.b2bpic.net/free-photo/young-couple-moving-new-home_23-2149242081.jpg", imageAlt: "Stylish home interior (new build)" },
|
||||||
{ imageSrc: "http://img.b2bpic.net/free-photo/modern-interior-beautiful-kitchen-studio_651396-1984.jpg", imageAlt: "Modern kitchen (new build)" },
|
{ imageSrc: "http://img.b2bpic.net/free-photo/modern-interior-beautiful-kitchen-studio_651396-1984.jpg", imageAlt: "Modern kitchen (new build)" }
|
||||||
],
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Signature Luxury Renovations", description: "Transforming existing residences into breathtaking masterpieces. Our expertise elevates beauty, functionality, and value through meticulous design and execution.", icon: Paintbrush,
|
title: "Signature Luxury Renovations", description: "Transforming existing residences into breathtaking masterpieces. Our expertise elevates beauty, functionality, and value through meticulous design and execution.", icon: Paintbrush,
|
||||||
mediaItems: [
|
mediaItems: [
|
||||||
{ imageSrc: "http://img.b2bpic.net/free-photo/luxurious-living-room-interior-design-with-elegant-furniture-marble-floor_23-2151995383.jpg", imageAlt: "Luxurious renovated living room" },
|
{ imageSrc: "http://img.b2bpic.net/free-photo/luxurious-living-room-interior-design-with-elegant-furniture-marble-floor_23-2151995383.jpg", imageAlt: "Luxurious renovated living room" },
|
||||||
{ imageSrc: "http://img.b2bpic.net/free-photo/elegant-luxury-bedroom-with-white-bed-and-large-window_123827-23875.jpg", imageAlt: "Elegant renovated bedroom" },
|
{ imageSrc: "http://img.b2bpic.net/free-photo/elegant-luxury-bedroom-with-white-bed-and-large-window_123827-23875.jpg", imageAlt: "Elegant renovated bedroom" }
|
||||||
],
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Exquisite Kitchen & Bath", description: "Creating bespoke culinary and spa-like bathroom retreats with cutting-edge design, premium finishes, and unparalleled craftsmanship.", icon: Utensils,
|
title: "Exquisite Kitchen & Bath", description: "Creating bespoke culinary and spa-like bathroom retreats with cutting-edge design, premium finishes, and unparalleled craftsmanship.", icon: Utensils,
|
||||||
mediaItems: [
|
mediaItems: [
|
||||||
{ imageSrc: "http://img.b2bpic.net/free-photo/part-modern-kitchen-place-cooking-extractor-stove_169016-19751.jpg", imageAlt: "Gourmet kitchen with island and modern appliances" },
|
{ imageSrc: "http://img.b2bpic.net/free-photo/part-modern-kitchen-place-cooking-extractor-stove_169016-19751.jpg", imageAlt: "Gourmet kitchen with island and modern appliances" },
|
||||||
{ imageSrc: "http://img.b2bpic.net/free-photo/close-up-bathtub-with-faucet_1203-1500.jpg", imageAlt: "Luxury bathroom with freestanding tub" },
|
{ imageSrc: "http://img.b2bpic.net/free-photo/close-up-bathtub-with-faucet_1203-1500.jpg", imageAlt: "Luxury bathroom with freestanding tub" }
|
||||||
],
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Seamless Project Management", description: "Guiding your project from conception to completion with expert oversight, ensuring timely delivery, budget adherence, and superior quality.", icon: Hammer,
|
title: "Seamless Project Management", description: "Guiding your project from conception to completion with expert oversight, ensuring timely delivery, budget adherence, and superior quality.", icon: Hammer,
|
||||||
mediaItems: [
|
mediaItems: [
|
||||||
{ imageSrc: "http://img.b2bpic.net/free-photo/stationery-glasses-lying-blueprint_23-2147831896.jpg", imageAlt: "Construction site with detailed plans" },
|
{ imageSrc: "http://img.b2bpic.net/free-photo/stationery-glasses-lying-blueprint_23-2147831896.jpg", imageAlt: "Construction site with detailed plans" },
|
||||||
{ imageSrc: "http://img.b2bpic.net/free-photo/architect-doing-his-job-office_23-2148242965.jpg", imageAlt: "Architect reviewing blueprints on site" },
|
{ imageSrc: "http://img.b2bpic.net/free-photo/architect-doing-his-job-office_23-2148242965.jpg", imageAlt: "Architect reviewing blueprints on site" }
|
||||||
],
|
]
|
||||||
},
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<TestimonialCardSixteen
|
<TestimonialCardSixteen
|
||||||
tag="Client Experiences"
|
tag="Client Experiences"
|
||||||
tagIcon={Sparkles}
|
tagIcon={Sparkles}
|
||||||
title="Exceeding Expectations, Project by Project"
|
title="Exceeding Expectations, Project by Project"
|
||||||
description="Hear from clients who trusted us with their vision and experienced the Elegance Builders difference."
|
description="Hear from clients who trusted us with their vision and experienced the RVNCO difference."
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1", name: "Eleanor Vance", role: "Homeowner, Bespoke Residence", company: "", rating: 5,
|
id: "1", name: "Eleanor Vance", role: "Homeowner, Bespoke Residence", company: "", rating: 5,
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-cheerful-manager-sunny-day_1139-417.jpg", imageAlt: "Eleanor Vance"},
|
imageSrc: "http://img.b2bpic.net/free-photo/close-up-cheerful-manager-sunny-day_1139-417.jpg", imageAlt: "Eleanor Vance"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "2", name: "Marcus Thorne", role: "Client, Luxury Renovation", company: "", rating: 5,
|
id: "2", name: "Marcus Thorne", role: "Client, Luxury Renovation", company: "", rating: 5,
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/excited-young-student-photographing-shore_1262-6090.jpg", imageAlt: "Marcus Thorne"},
|
imageSrc: "http://img.b2bpic.net/free-photo/excited-young-student-photographing-shore_1262-6090.jpg", imageAlt: "Marcus Thorne"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "3", name: "Olivia Sterling", role: "Homeowner, Bespoke Kitchen", company: "", rating: 5,
|
id: "3", name: "Olivia Sterling", role: "Homeowner, Bespoke Kitchen", company: "", rating: 5,
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-tanned-darkhaired-woman-widebrimmed-hat-embarrassed-smiling_197531-26509.jpg", imageAlt: "Olivia Sterling"},
|
imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-tanned-darkhaired-woman-widebrimmed-hat-embarrassed-smiling_197531-26509.jpg", imageAlt: "Olivia Sterling"
|
||||||
|
}
|
||||||
]}
|
]}
|
||||||
kpiItems={[
|
kpiItems={[
|
||||||
{ value: "50+", label: "Bespoke Projects" },
|
{ value: "50+", label: "Bespoke Projects" },
|
||||||
{ value: "10+", label: "Years Expertise" },
|
{ value: "10+", label: "Years Expertise" },
|
||||||
{ value: "100%", label: "Client Satisfaction" },
|
{ value: "100%", label: "Client Satisfaction" }
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<TeamCardTen
|
<TeamCardTen
|
||||||
@@ -129,9 +135,11 @@ export default function BusinessCoachTemplatePage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
members={[
|
members={[
|
||||||
{
|
{
|
||||||
id: "1", name: "Jonathan Sterling", imageSrc: "http://img.b2bpic.net/free-photo/smiley-architect-wearing-his-safety-equipment_23-2148242918.jpg", imageAlt: "Jonathan Sterling - Founder & Lead Designer"},
|
id: "1", name: "Jonathan Sterling", imageSrc: "http://img.b2bpic.net/free-photo/smiley-architect-wearing-his-safety-equipment_23-2148242918.jpg", imageAlt: "Jonathan Sterling - Founder & Lead Designer"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "2", name: "Sophia Evans", imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-brunette-architect-woman-wearing-safety-helmet-pink-background-smiling-positive-doing-ok-sign-with-hand-fingers-successful-expression_839833-8896.jpg", imageAlt: "Sophia Evans - Head of Project Management"},
|
id: "2", name: "Sophia Evans", imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-brunette-architect-woman-wearing-safety-helmet-pink-background-smiling-positive-doing-ok-sign-with-hand-fingers-successful-expression_839833-8896.jpg", imageAlt: "Sophia Evans - Head of Project Management"
|
||||||
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<FaqSplitMedia
|
<FaqSplitMedia
|
||||||
@@ -148,13 +156,17 @@ export default function BusinessCoachTemplatePage() {
|
|||||||
mediaPosition="right"
|
mediaPosition="right"
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "1", title: "Our Design & Build Process Explained", content: "We offer a fully integrated process from initial consultation and conceptual design to architectural planning, construction, and final handover. This holistic approach ensures seamless communication and a cohesive vision."},
|
id: "1", title: "Our Design & Build Process Explained", content: "We offer a fully integrated process from initial consultation and conceptual design to architectural planning, construction, and final handover. This holistic approach ensures seamless communication and a cohesive vision."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "2", title: "Commitment to Luxury Craftsmanship", content: "Our commitment to excellence is reflected in our selection of premium materials, skilled artisans, and rigorous quality control at every stage. We pride ourselves on meticulous attention to detail."},
|
id: "2", title: "Commitment to Luxury Craftsmanship", content: "Our commitment to excellence is reflected in our selection of premium materials, skilled artisans, and rigorous quality control at every stage. We pride ourselves on meticulous attention to detail."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "3", title: "Working with Existing Plans", content: "While we offer comprehensive design services, we are also adept at bringing your existing architectural plans to life with our build expertise, ensuring your vision is realized to the highest standards."},
|
id: "3", title: "Working with Existing Plans", content: "While we offer comprehensive design services, we are also adept at bringing your existing architectural plans to life with our build expertise, ensuring your vision is realized to the highest standards."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "4", title: "Project Timelines & Transparency", content: "Project timelines vary significantly based on scope and complexity. We provide a detailed project schedule at the outset and maintain transparent communication throughout, keeping you informed at every milestone."},
|
id: "4", title: "Project Timelines & Transparency", content: "Project timelines vary significantly based on scope and complexity. We provide a detailed project schedule at the outset and maintain transparent communication throughout, keeping you informed at every milestone."
|
||||||
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<ContactText
|
<ContactText
|
||||||
@@ -162,37 +174,37 @@ export default function BusinessCoachTemplatePage() {
|
|||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Book a Consultation", href: "#contact" },
|
{ text: "Book a Consultation", href: "/#contact" },
|
||||||
{ text: "View Our Portfolio", href: "#services" },
|
{ text: "View Our Portfolio", href: "/#services" }
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<FooterLogoEmphasis
|
<FooterLogoEmphasis
|
||||||
logoText="Elegance Builders"
|
logoText="RVNCO"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{ label: "Our Process", href: "#about" },
|
{ label: "Our Process", href: "/#about" },
|
||||||
{ label: "Services", href: "#services" },
|
{ label: "Services", href: "/#services" },
|
||||||
{ label: "Testimonials", href: "#testimonials" },
|
{ label: "Testimonials", href: "/#testimonials" }
|
||||||
],
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{ label: "FAQ", href: "#faq" },
|
{ label: "FAQ", href: "/#faq" },
|
||||||
{ label: "Contact", href: "#contact" },
|
{ label: "Contact", href: "/#contact" },
|
||||||
{ label: "Book a Consultation", href: "#contact" },
|
{ label: "Book a Consultation", href: "/booking" }
|
||||||
],
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{ label: "LinkedIn", href: "#" },
|
{ label: "LinkedIn", href: "#" },
|
||||||
{ label: "Twitter", href: "#" },
|
{ label: "Twitter", href: "#" },
|
||||||
{ label: "Instagram", href: "#" },
|
{ label: "Instagram", href: "#" }
|
||||||
],
|
]
|
||||||
},
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user