Update src/app/services/page.tsx

This commit is contained in:
2026-03-31 21:20:26 +00:00
parent 4b06fc1656
commit d3dbc1ae7a

View File

@@ -1,128 +1,33 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import SplitAbout from '@/components/sections/about/SplitAbout';
import { Globe } from "lucide-react";
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { ChevronRight } from "lucide-react";
export default function LandingPage() {
export default function ServicesPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="mediumLarge"
sizing="mediumLarge"
background="grid"
cardStyle="soft-shadow"
primaryButtonStyle="gradient"
secondaryButtonStyle="radial-glow"
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="Masi Digital"
button={{
text: "Get a Free Preview",
href: "/contact",
}}
/>
</div>
<div id="about" data-section="about">
<SplitAbout
textboxLayout="default"
useInvertedBackground={false}
title="Tailored Web Solutions"
description="High-conversion web design matched with intelligent automation systems."
bulletPoints={[
{
title: "Clean Design",
description: "Minimalist UI that drives action.",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/employee-office-leaving-desk-present-revenue-figures-tablet_482257-126652.jpg"
mediaAnimation="slide-up"
/>
</div>
<div id="metric" data-section="metric">
<MetricCardOne
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="Our Services Impact"
description="Quantifiable growth for your business."
metrics={[
{
id: "ms1",
value: "100+",
title: "Web Projects",
description: "Successfully launched",
icon: Globe,
},
]}
/>
</div>
<div id="footer" data-section="footer">
<ThemeProvider>
<NavbarLayoutFloatingOverlay
navItems={[{ name: "Home", id: "/" }, { name: "Services", id: "/services" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
brandName="Masi Digital"
button={{ text: "Get a Free Preview", href: "/contact" }}
/>
<FeatureCardTwentySix
title="Our Core Services"
description="High-impact digital solutions designed for local business growth."
textboxLayout="default"
useInvertedBackground={false}
features={[
{ title: "Professional Web Design", description: "High-converting, responsive websites.", buttonIcon: ChevronRight },
{ title: "Lead Automation", description: "Instant response systems for new inquiries.", buttonIcon: ChevronRight },
{ title: "AI Systems", description: "Intelligent customer service integration.", buttonIcon: ChevronRight }
]}
/>
<FooterBaseCard
logoText="Masi Digital"
columns={[
{
title: "Links",
items: [
{
label: "Services",
href: "/services",
},
{
label: "About",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
title: "Contact",
items: [
{
label: "masidigitalco@gmail.com",
href: "mailto:masidigitalco@gmail.com",
},
],
},
]}
copyrightText="© 2025 Masi Digital. All Rights Reserved."
/>
</div>
</ReactLenis>
logoText="Masi Digital"
columns={[{ title: "Links", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }]}
/>
</ThemeProvider>
);
}
}