Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
383
src/app/page.tsx
383
src/app/page.tsx
@@ -32,35 +32,21 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "#hero",
|
||||
},
|
||||
name: "Home", id: "#hero"},
|
||||
{
|
||||
name: "Services",
|
||||
id: "#services",
|
||||
},
|
||||
name: "Services", id: "#services"},
|
||||
{
|
||||
name: "Projects",
|
||||
id: "#projects",
|
||||
},
|
||||
name: "Projects", id: "#projects"},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "#reviews",
|
||||
},
|
||||
name: "Reviews", id: "#reviews"},
|
||||
{
|
||||
name: "About",
|
||||
id: "#about",
|
||||
},
|
||||
name: "About", id: "#about"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
name: "Contact", id: "#contact"},
|
||||
]}
|
||||
brandName="Yamato Construction"
|
||||
button={{
|
||||
text: "Get Free Quote",
|
||||
href: "#contact",
|
||||
}}
|
||||
text: "Get Free Quote", href: "#contact"}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
@@ -68,70 +54,43 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
background={{
|
||||
variant: "downward-rays-static",
|
||||
}}
|
||||
variant: "downward-rays-static"}}
|
||||
title="Construction Done Right. Trusted Across London."
|
||||
description="From renovations and carpentry to complete property transformations—quality workmanship, clear communication, and reliable delivery."
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-vector/gradient-star-with-check-mark_78370-4437.jpg",
|
||||
alt: "5.0 Rating",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-vector/gradient-star-with-check-mark_78370-4437.jpg", alt: "5.0 Rating"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-vector/30-million-30m-views-video-premium-design-banner_1017-55235.jpg",
|
||||
alt: "30+ Verified Reviews",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-vector/30-million-30m-views-video-premium-design-banner_1017-55235.jpg", alt: "30+ Verified Reviews"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-vector/flat-english-lessons-labels-collection_23-2149306719.jpg",
|
||||
alt: "London Based",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-vector/flat-english-lessons-labels-collection_23-2149306719.jpg", alt: "London Based"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-male-builder-yellow-helmet-posing-showing-alright-sign-light-background_140725-27009.jpg",
|
||||
alt: "Certified Quality Badge",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-male-builder-yellow-helmet-posing-showing-alright-sign-light-background_140725-27009.jpg", alt: "Certified Quality Badge"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-vector/flat-usa-labor-day-label-collection_23-2148225166.jpg",
|
||||
alt: "Trusted London Contractor",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-vector/flat-usa-labor-day-label-collection_23-2148225166.jpg", alt: "Trusted London Contractor"},
|
||||
]}
|
||||
avatarText="★★★★★ 5.0 Rating 30+ Verified Reviews London Based Certified Quality Local Trust"
|
||||
buttons={[
|
||||
{
|
||||
text: "Get Free Quote",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Get Free Quote", href: "#contact"},
|
||||
{
|
||||
text: "Call +44 7846 883816",
|
||||
href: "tel:+447846883816",
|
||||
},
|
||||
text: "Call +44 7846 883816", href: "tel:+447846883816"},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Satisfaction Guaranteed",
|
||||
icon: Sparkles,
|
||||
type: "text-icon", text: "Satisfaction Guaranteed", icon: Sparkles,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Expert Craftsmanship",
|
||||
icon: Building,
|
||||
type: "text-icon", text: "Expert Craftsmanship", icon: Building,
|
||||
},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/room-interior-details-with-comfortable-armchair-gray-tapestry-wall-vertical-frame_166373-2415.jpg",
|
||||
alt: "Luxury Home Interior Detail",
|
||||
type: "image", src: "http://img.b2bpic.net/free-photo/room-interior-details-with-comfortable-armchair-gray-tapestry-wall-vertical-frame_166373-2415.jpg", alt: "Luxury Home Interior Detail"},
|
||||
{
|
||||
type: "text-icon", text: "Local London Team", icon: MapPin,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Local London Team",
|
||||
icon: MapPin,
|
||||
},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/crane-construction-site_1252-1175.jpg",
|
||||
alt: "Modern Construction Site Progress",
|
||||
},
|
||||
type: "image", src: "http://img.b2bpic.net/free-photo/crane-construction-site_1252-1175.jpg", alt: "Modern Construction Site Progress"},
|
||||
]}
|
||||
marqueeSpeed={30}
|
||||
showMarqueeCard={true}
|
||||
@@ -145,59 +104,23 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah Johnson",
|
||||
handle: "@LondonHomeowner",
|
||||
testimonial: "Great price, great service, nice people. Yamato Construction transformed our Victorian home with such care.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-business-woman-white-shirt_23-2148095748.jpg",
|
||||
imageAlt: "Sarah Johnson",
|
||||
},
|
||||
id: "1", name: "Sarah Johnson", handle: "@LondonHomeowner", testimonial: "Great price, great service, nice people. Yamato Construction transformed our Victorian home with such care.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-business-woman-white-shirt_23-2148095748.jpg", imageAlt: "Sarah Johnson"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Michael Chen",
|
||||
handle: "@CommercialClient",
|
||||
testimonial: "The finish is lovely, and the place looks completely transformed. Our office refurbishment was flawless.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/ambitious-smiling-corporate-woman-suit-showing-thumbs-up-recommending-something-good-standing-white-background_176420-50395.jpg",
|
||||
imageAlt: "Michael Chen",
|
||||
},
|
||||
id: "2", name: "Michael Chen", handle: "@CommercialClient", testimonial: "The finish is lovely, and the place looks completely transformed. Our office refurbishment was flawless.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/ambitious-smiling-corporate-woman-suit-showing-thumbs-up-recommending-something-good-standing-white-background_176420-50395.jpg", imageAlt: "Michael Chen"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emily Rodriguez",
|
||||
handle: "@PropertyInvestor",
|
||||
testimonial: "If you want to feel like you’re in safe hands, go with Martin! Professional, tidy, and reliable.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-thoughtful-woman-sporty-top-white-leggings-holding-pink-sport-bottle-hand-while-dreamily-looking-hand-watch-with-sea-view-background_574295-1586.jpg",
|
||||
imageAlt: "Emily Rodriguez",
|
||||
},
|
||||
id: "3", name: "Emily Rodriguez", handle: "@PropertyInvestor", testimonial: "If you want to feel like you’re in safe hands, go with Martin! Professional, tidy, and reliable.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-thoughtful-woman-sporty-top-white-leggings-holding-pink-sport-bottle-hand-while-dreamily-looking-hand-watch-with-sea-view-background_574295-1586.jpg", imageAlt: "Emily Rodriguez"},
|
||||
{
|
||||
id: "4",
|
||||
name: "David Kim",
|
||||
handle: "@FamilyHome",
|
||||
testimonial: "Exceptional craftsmanship and clear communication from start to finish. Our home renovation exceeded expectations.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-cute-couple-repairs-room_1157-25159.jpg",
|
||||
imageAlt: "David Kim",
|
||||
},
|
||||
id: "4", name: "David Kim", handle: "@FamilyHome", testimonial: "Exceptional craftsmanship and clear communication from start to finish. Our home renovation exceeded expectations.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-cute-couple-repairs-room_1157-25159.jpg", imageAlt: "David Kim"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Jessica Lee",
|
||||
handle: "@LondonResident",
|
||||
testimonial: "Reliable and high-quality work. The team was incredibly respectful and tidy throughout the entire project. Highly recommend!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-man-showing-thumbs-down-up-suit-hat-looking-indecisive-front-view_176474-23115.jpg",
|
||||
imageAlt: "Jessica Lee",
|
||||
},
|
||||
id: "5", name: "Jessica Lee", handle: "@LondonResident", testimonial: "Reliable and high-quality work. The team was incredibly respectful and tidy throughout the entire project. Highly recommend!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-man-showing-thumbs-down-up-suit-hat-looking-indecisive-front-view_176474-23115.jpg", imageAlt: "Jessica Lee"},
|
||||
{
|
||||
id: "6",
|
||||
name: "Tom Wilson",
|
||||
handle: "@LocalBusiness",
|
||||
testimonial: "Yamato Construction delivered on time and on budget for our shop fit-out. Truly local experts with a premium touch.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/candid-construction-worker-relaxing-with-cup-coffee_329181-3751.jpg",
|
||||
imageAlt: "Tom Wilson",
|
||||
},
|
||||
id: "6", name: "Tom Wilson", handle: "@LocalBusiness", testimonial: "Yamato Construction delivered on time and on budget for our shop fit-out. Truly local experts with a premium touch.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/candid-construction-worker-relaxing-with-cup-coffee_329181-3751.jpg", imageAlt: "Tom Wilson"},
|
||||
]}
|
||||
showRating={true}
|
||||
title="Trusted by Homeowners Across London"
|
||||
@@ -213,61 +136,21 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "service-1",
|
||||
name: "Home Renovations",
|
||||
price: "Free Quote",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-kitchen-surface-pull-out-drawer-loft-style-interior-design-details_169016-72762.jpg",
|
||||
imageAlt: "Home Renovations",
|
||||
},
|
||||
id: "service-1", name: "Home Renovations", price: "Free Quote", imageSrc: "http://img.b2bpic.net/free-photo/modern-kitchen-surface-pull-out-drawer-loft-style-interior-design-details_169016-72762.jpg", imageAlt: "Home Renovations"},
|
||||
{
|
||||
id: "service-2",
|
||||
name: "Carpentry",
|
||||
price: "Free Quote",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-working-wood-engraving-workshop_23-2149185400.jpg",
|
||||
imageAlt: "Carpentry",
|
||||
},
|
||||
id: "service-2", name: "Carpentry", price: "Free Quote", imageSrc: "http://img.b2bpic.net/free-photo/man-working-wood-engraving-workshop_23-2149185400.jpg", imageAlt: "Carpentry"},
|
||||
{
|
||||
id: "service-3",
|
||||
name: "Painting & Decorating",
|
||||
price: "Free Quote",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-holding-paintbrush-bucket-new-home-decoration_23-2149086769.jpg",
|
||||
imageAlt: "Painting & Decorating",
|
||||
},
|
||||
id: "service-3", name: "Painting & Decorating", price: "Free Quote", imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-holding-paintbrush-bucket-new-home-decoration_23-2149086769.jpg", imageAlt: "Painting & Decorating"},
|
||||
{
|
||||
id: "service-4",
|
||||
name: "Office Refurbishments",
|
||||
price: "Free Quote",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/corporate-building-with-empty-room_23-2148727503.jpg",
|
||||
imageAlt: "Office Refurbishments",
|
||||
},
|
||||
id: "service-4", name: "Office Refurbishments", price: "Free Quote", imageSrc: "http://img.b2bpic.net/free-photo/corporate-building-with-empty-room_23-2148727503.jpg", imageAlt: "Office Refurbishments"},
|
||||
{
|
||||
id: "service-5",
|
||||
name: "Interior Improvements",
|
||||
price: "Free Quote",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-kitchen-interior-design_23-2151821318.jpg",
|
||||
imageAlt: "Interior Improvements",
|
||||
},
|
||||
id: "service-5", name: "Interior Improvements", price: "Free Quote", imageSrc: "http://img.b2bpic.net/free-photo/modern-kitchen-interior-design_23-2151821318.jpg", imageAlt: "Interior Improvements"},
|
||||
{
|
||||
id: "service-6",
|
||||
name: "Small Construction Jobs",
|
||||
price: "Free Quote",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-female-working_23-2148836090.jpg",
|
||||
imageAlt: "Small Construction Jobs",
|
||||
},
|
||||
id: "service-6", name: "Small Construction Jobs", price: "Free Quote", imageSrc: "http://img.b2bpic.net/free-photo/portrait-female-working_23-2148836090.jpg", imageAlt: "Small Construction Jobs"},
|
||||
{
|
||||
id: "service-7",
|
||||
name: "Property Upgrades",
|
||||
price: "Free Quote",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-modern-construction-site_23-2151317364.jpg",
|
||||
imageAlt: "Property Upgrades",
|
||||
},
|
||||
id: "service-7", name: "Property Upgrades", price: "Free Quote", imageSrc: "http://img.b2bpic.net/free-photo/view-modern-construction-site_23-2151317364.jpg", imageAlt: "Property Upgrades"},
|
||||
{
|
||||
id: "service-8",
|
||||
name: "Maintenance Works",
|
||||
price: "Free Quote",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/engineers-looking-drafts_23-2147785485.jpg",
|
||||
imageAlt: "Maintenance Works",
|
||||
},
|
||||
id: "service-8", name: "Maintenance Works", price: "Free Quote", imageSrc: "http://img.b2bpic.net/free-photo/engineers-looking-drafts_23-2147785485.jpg", imageAlt: "Maintenance Works"},
|
||||
]}
|
||||
title="Our Professional Services"
|
||||
description="From minor repairs to major transformations, Yamato Construction provides a full spectrum of building services with unmatched quality."
|
||||
@@ -282,55 +165,23 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "project-1",
|
||||
name: "Victorian Kitchen Renovation",
|
||||
price: "Timeline: 12 weeks",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-beautifully-decorated-green-kitchen_23-2150165490.jpg",
|
||||
imageAlt: "Victorian Kitchen Renovation",
|
||||
},
|
||||
id: "project-1", name: "Victorian Kitchen Renovation", price: "Timeline: 12 weeks", imageSrc: "http://img.b2bpic.net/free-photo/view-beautifully-decorated-green-kitchen_23-2150165490.jpg", imageAlt: "Victorian Kitchen Renovation"},
|
||||
{
|
||||
id: "project-2",
|
||||
name: "Modern Apartment Living Space",
|
||||
price: "Timeline: 8 weeks",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/long-shot-woman-with-tablet-couch_23-2149403361.jpg",
|
||||
imageAlt: "Modern Apartment Living Space",
|
||||
},
|
||||
id: "project-2", name: "Modern Apartment Living Space", price: "Timeline: 8 weeks", imageSrc: "http://img.b2bpic.net/free-photo/long-shot-woman-with-tablet-couch_23-2149403361.jpg", imageAlt: "Modern Apartment Living Space"},
|
||||
{
|
||||
id: "project-3",
|
||||
name: "Commercial Office Fit-Out",
|
||||
price: "Timeline: 16 weeks",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-shot-modern-style-open-space-office-interior_181624-19369.jpg",
|
||||
imageAlt: "Commercial Office Fit-Out",
|
||||
},
|
||||
id: "project-3", name: "Commercial Office Fit-Out", price: "Timeline: 16 weeks", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-shot-modern-style-open-space-office-interior_181624-19369.jpg", imageAlt: "Commercial Office Fit-Out"},
|
||||
{
|
||||
id: "project-4",
|
||||
name: "Luxury Bathroom Remodel",
|
||||
price: "Timeline: 6 weeks",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bangkok-thailand-august-12-2016-beautiful-luxury-bathroom_1203-2868.jpg",
|
||||
imageAlt: "Luxury Bathroom Remodel",
|
||||
},
|
||||
id: "project-4", name: "Luxury Bathroom Remodel", price: "Timeline: 6 weeks", imageSrc: "http://img.b2bpic.net/free-photo/bangkok-thailand-august-12-2016-beautiful-luxury-bathroom_1203-2868.jpg", imageAlt: "Luxury Bathroom Remodel"},
|
||||
{
|
||||
id: "project-5",
|
||||
name: "Townhouse Exterior Facade",
|
||||
price: "Timeline: 10 weeks",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bottom-view-corner-building_1156-53.jpg",
|
||||
imageAlt: "Townhouse Exterior Facade",
|
||||
},
|
||||
id: "project-5", name: "Townhouse Exterior Facade", price: "Timeline: 10 weeks", imageSrc: "http://img.b2bpic.net/free-photo/bottom-view-corner-building_1156-53.jpg", imageAlt: "Townhouse Exterior Facade"},
|
||||
{
|
||||
id: "project-6",
|
||||
name: "Loft Conversion & Extension",
|
||||
price: "Timeline: 14 weeks",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-looking-camera-while-climbing-ladder_23-2147824077.jpg",
|
||||
imageAlt: "Loft Conversion & Extension",
|
||||
},
|
||||
id: "project-6", name: "Loft Conversion & Extension", price: "Timeline: 14 weeks", imageSrc: "http://img.b2bpic.net/free-photo/girl-looking-camera-while-climbing-ladder_23-2147824077.jpg", imageAlt: "Loft Conversion & Extension"},
|
||||
]}
|
||||
title="Our Recent Work"
|
||||
description="Explore our portfolio of stunning transformations and see the quality craftsmanship we bring to every project."
|
||||
buttons={[
|
||||
{
|
||||
text: "Start Your Project",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Start Your Project", href: "#contact"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -342,19 +193,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
negativeCard={{
|
||||
items: [
|
||||
"Proven Track Record",
|
||||
"Experienced Professionals",
|
||||
"Customer-Centric Approach",
|
||||
"Local London Expertise",
|
||||
],
|
||||
"Proven Track Record", "Experienced Professionals", "Customer-Centric Approach", "Local London Expertise"],
|
||||
}}
|
||||
positiveCard={{
|
||||
items: [
|
||||
"Clear Communication",
|
||||
"Delivered On Budget",
|
||||
"High Finish Quality",
|
||||
"Respectful, Tidy Team",
|
||||
],
|
||||
"Clear Communication", "Delivered On Budget", "High Finish Quality", "Respectful, Tidy Team"],
|
||||
}}
|
||||
title="Why Choose Yamato Construction?"
|
||||
description="Clients consistently praise our unwavering commitment to clarity, exceptional workmanship, and respectful service on every single project."
|
||||
@@ -368,36 +211,14 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
groups={[
|
||||
{
|
||||
id: "core-team",
|
||||
groupTitle: "The Core Team",
|
||||
members: [
|
||||
id: "core-team", groupTitle: "The Core Team", members: [
|
||||
{
|
||||
id: "martin",
|
||||
title: "Martin Yamato",
|
||||
subtitle: "Founder & Lead Builder",
|
||||
detail: "With over 20 years of experience, Martin ensures every project meets the highest standards of quality.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-old-man-with-protection-helmet-glasses_23-2148269396.jpg",
|
||||
imageAlt: "Martin Yamato",
|
||||
},
|
||||
id: "martin", title: "Martin Yamato", subtitle: "Founder & Lead Builder", detail: "With over 20 years of experience, Martin ensures every project meets the highest standards of quality.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-old-man-with-protection-helmet-glasses_23-2148269396.jpg", imageAlt: "Martin Yamato"},
|
||||
{
|
||||
id: "sarah",
|
||||
title: "Sarah Davies",
|
||||
subtitle: "Project Manager",
|
||||
detail: "Sarah expertly coordinates projects, ensuring smooth communication and timely delivery.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/senior-woman-with-plans-helmet_1149-1127.jpg",
|
||||
imageAlt: "Sarah Davies",
|
||||
},
|
||||
id: "sarah", title: "Sarah Davies", subtitle: "Project Manager", detail: "Sarah expertly coordinates projects, ensuring smooth communication and timely delivery.", imageSrc: "http://img.b2bpic.net/free-photo/senior-woman-with-plans-helmet_1149-1127.jpg", imageAlt: "Sarah Davies"},
|
||||
{
|
||||
id: "david",
|
||||
title: "David Miller",
|
||||
subtitle: "Head Carpenter",
|
||||
detail: "David's precision carpentry brings custom solutions and flawless finishes to every detail.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-with-safety-vest-crossed-arms_23-2148269352.jpg",
|
||||
imageAlt: "David Miller",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/interior-fragment-with-armchairs-glass-wall-stylish-lounge-area-furniture_169016-72729.jpg",
|
||||
imageAlt: "professional male builder smiling portrait",
|
||||
id: "david", title: "David Miller", subtitle: "Head Carpenter", detail: "David's precision carpentry brings custom solutions and flawless finishes to every detail.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-with-safety-vest-crossed-arms_23-2148269352.jpg", imageAlt: "David Miller"},
|
||||
]
|
||||
},
|
||||
]}
|
||||
title="Meet The Team Behind Yamato Construction"
|
||||
@@ -410,35 +231,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "q1",
|
||||
title: "What areas do you cover?",
|
||||
content: "We primarily serve homeowners and commercial property owners across all boroughs of London.",
|
||||
},
|
||||
id: "q1", title: "What areas do you cover?", content: "We primarily serve homeowners and commercial property owners across all boroughs of London."},
|
||||
{
|
||||
id: "q2",
|
||||
title: "Do you provide free quotes?",
|
||||
content: "Yes, we offer completely free, no-obligation quotes for all potential projects. Contact us to schedule an assessment.",
|
||||
},
|
||||
id: "q2", title: "Do you provide free quotes?", content: "Yes, we offer completely free, no-obligation quotes for all potential projects. Contact us to schedule an assessment."},
|
||||
{
|
||||
id: "q3",
|
||||
title: "What type of construction work do you do?",
|
||||
content: "We handle a wide range of projects, including home renovations, carpentry, painting, office refurbishments, and small construction jobs.",
|
||||
},
|
||||
id: "q3", title: "What type of construction work do you do?", content: "We handle a wide range of projects, including home renovations, carpentry, painting, office refurbishments, and small construction jobs."},
|
||||
{
|
||||
id: "q4",
|
||||
title: "Can you handle small jobs?",
|
||||
content: "Absolutely! No job is too small. We're happy to assist with minor repairs, maintenance, and interior improvements.",
|
||||
},
|
||||
id: "q4", title: "Can you handle small jobs?", content: "Absolutely! No job is too small. We're happy to assist with minor repairs, maintenance, and interior improvements."},
|
||||
{
|
||||
id: "q5",
|
||||
title: "Are projects fixed-price?",
|
||||
content: "For most projects, we provide a fixed-price quote after a thorough assessment, ensuring transparency and no hidden costs.",
|
||||
},
|
||||
id: "q5", title: "Are projects fixed-price?", content: "For most projects, we provide a fixed-price quote after a thorough assessment, ensuring transparency and no hidden costs."},
|
||||
{
|
||||
id: "q6",
|
||||
title: "How long do renovations usually take?",
|
||||
content: "Project timelines vary depending on complexity and scope. We'll provide an estimated timeline with your detailed quote.",
|
||||
},
|
||||
id: "q6", title: "How long do renovations usually take?", content: "Project timelines vary depending on complexity and scope. We'll provide an estimated timeline with your detailed quote."},
|
||||
]}
|
||||
sideTitle="Your Questions, Answered."
|
||||
sideDescription="Find quick answers to common inquiries about our services, process, and what to expect."
|
||||
@@ -451,20 +254,15 @@ export default function LandingPage() {
|
||||
<ContactCTA
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
variant: "radial-gradient"}}
|
||||
tag="Ready to Start?"
|
||||
title="Tell Us About Your Project"
|
||||
description="Request a free, no-obligation quote by providing a few details about your construction needs. We aim to respond within one business day."
|
||||
buttons={[
|
||||
{
|
||||
text: "Request Free Quote",
|
||||
href: "mailto:info@yamatoconstruction.com?subject=Quote Request",
|
||||
},
|
||||
text: "Request Free Quote", href: "mailto:info@yamatoconstruction.com?subject=Quote Request"},
|
||||
{
|
||||
text: "Call Us Now",
|
||||
href: "tel:+447846883816",
|
||||
},
|
||||
text: "Call Us Now", href: "tel:+447846883816"},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
@@ -477,62 +275,37 @@ export default function LandingPage() {
|
||||
logoText="Yamato Construction"
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#about",
|
||||
},
|
||||
label: "About Us", href: "#about"},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Contact", href: "#contact"},
|
||||
{
|
||||
label: "Reviews",
|
||||
href: "#reviews",
|
||||
},
|
||||
label: "Reviews", href: "#reviews"},
|
||||
{
|
||||
label: "Projects",
|
||||
href: "#projects",
|
||||
},
|
||||
label: "Projects", href: "#projects"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Home Renovations",
|
||||
href: "#services",
|
||||
},
|
||||
label: "Home Renovations", href: "#services"},
|
||||
{
|
||||
label: "Carpentry",
|
||||
href: "#services",
|
||||
},
|
||||
label: "Carpentry", href: "#services"},
|
||||
{
|
||||
label: "Office Refurbishments",
|
||||
href: "#services",
|
||||
},
|
||||
label: "Office Refurbishments", href: "#services"},
|
||||
{
|
||||
label: "Maintenance",
|
||||
href: "#services",
|
||||
},
|
||||
label: "Maintenance", href: "#services"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect",
|
||||
items: [
|
||||
title: "Connect", items: [
|
||||
{
|
||||
label: "Google Reviews",
|
||||
href: "https://g.page/yamatoconstruction/review",
|
||||
},
|
||||
label: "Google Reviews", href: "https://g.page/yamatoconstruction/review"},
|
||||
{
|
||||
label: "Call Us",
|
||||
href: "tel:+447846883816",
|
||||
},
|
||||
label: "Call Us", href: "tel:+447846883816"},
|
||||
{
|
||||
label: "Get a Quote",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Get a Quote", href: "#contact"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user