Merge version_3 into main #3
@@ -30,7 +30,7 @@ export default function LandingPage() {
|
||||
brandName="The Experts"
|
||||
navItems={[
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Portfolio", id: "portfolio" },
|
||||
{ name: "About", id: "about" },
|
||||
]}
|
||||
|
||||
113
src/app/services/page.tsx
Normal file
113
src/app/services/page.tsx
Normal file
@@ -0,0 +1,113 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import FeatureCardSeven from "@/components/sections/feature/FeatureCardSeven";
|
||||
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
||||
|
||||
export default function ServicesPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="rounded"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="mediumLargeSizeLargeTitles"
|
||||
background="grid"
|
||||
cardStyle="gradient-radial"
|
||||
primaryButtonStyle="shadow"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="The Experts"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Portfolio", id: "#portfolio" },
|
||||
{ name: "About", id: "#about" },
|
||||
]}
|
||||
button={{
|
||||
text: "Get a Quote", href: "#contact"
|
||||
}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardSeven
|
||||
title="Our Comprehensive Renovation Services"
|
||||
description="We offer a full range of professional home renovation services designed to transform your space and enhance your lifestyle. Whether you're planning a complete home remodel or specific room renovations, our expert team has the experience and expertise to bring your vision to life."
|
||||
tag="Services"
|
||||
features={[
|
||||
{
|
||||
id: 1,
|
||||
title: "Kitchen Renovations", description: "Transform your kitchen into a modern, functional, and beautiful space. We handle everything from layout optimization to custom cabinetry, countertops, backsplashes, appliances, and lighting design. Our kitchen renovations increase home value and improve daily living.", imageSrc: "http://img.b2bpic.net/free-photo/woman-man-working-laptop-home-modern-kitchen_651396-3535.jpg?_wi=1", imageAlt: "Modern kitchen renovation"
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Bathroom Renovations", description: "Create your perfect bathroom sanctuary with our comprehensive renovation services. From spa-like designs to accessibility upgrades, we specialize in tiling, fixtures, vanities, lighting, and ventilation. Every bathroom project is executed with precision and attention to waterproofing.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-shot-modern-house-bathroom-with-technology-art_181624-2980.jpg?_wi=1", imageAlt: "Luxury bathroom renovation"
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Living Space Redesign", description: "Reimagine your living areas with our design and renovation expertise. We handle flooring, wall treatments, custom built-ins, entertainment centers, and open-concept conversions. Our living space renovations maximize functionality and aesthetics.", imageSrc: "http://img.b2bpic.net/free-photo/blonde-charming-woman-silk-black-jumpsuit-stylish-eyeglasses-sits-brown-big-soft-sofa-ho_197531-33650.jpg", imageAlt: "Living room renovation"
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
title: "Basement Finishing", description: "Expand your living space by finishing your basement. We provide waterproofing, framing, electrical, plumbing, HVAC installation, flooring, and custom finishing. Transform unused space into functional rooms for entertainment, recreation, or additional bedrooms.", imageSrc: "http://img.b2bpic.net/free-photo/entrepreneur-collaborates-with-real-estate-team-experts_482257-95542.jpg", imageAlt: "Basement finishing project"
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
title: "Flooring Installation", description: "Upgrade your home with premium flooring options. We install hardwood, laminate, vinyl, tile, and carpet with professional craftsmanship. Our flooring services include subfloor preparation, underlayment, and expert installation for lasting results.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-working-with-ladder_23-2149366658.jpg", imageAlt: "Flooring installation"
|
||||
},
|
||||
{
|
||||
id: 6,
|
||||
title: "Exterior Updates", description: "Enhance your home's curb appeal and protection with exterior renovations. We offer roofing, siding, windows, doors, decking, and landscape improvements. Our exterior work uses quality materials designed to withstand the elements and add property value.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-new-normal-with-safety-measures_23-2148656706.jpg", imageAlt: "Exterior renovation work"
|
||||
},
|
||||
]}
|
||||
animationType="blur-reveal"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="The Experts"
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Kitchen Renovation", href: "/services" },
|
||||
{ label: "Bathroom Renovation", href: "/services" },
|
||||
{ label: "Design Consultation", href: "/services" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/#about" },
|
||||
{ label: "Our Team", href: "/#team" },
|
||||
{ label: "Portfolio", href: "/#portfolio" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact", items: [
|
||||
{ label: "Get a Quote", href: "#contact" },
|
||||
{ label: "Call Us", href: "tel:+1-555-123-4567" },
|
||||
{ label: "Email", href: "mailto:info@theexperts.com" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Warranty", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2025 The Experts. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user