Update src/app/services/page.tsx

This commit is contained in:
2026-05-26 12:17:43 +00:00
parent ffdbe416f9
commit e7f9013795

View File

@@ -1,9 +1,9 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { ThemeProvider, ThemeProviderProps } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import FeatureCardTwentySix, { FeatureCardTwentySixProps } from '@/components/sections/feature/FeatureCardTwentySix';
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
@@ -19,8 +19,9 @@ export default function ServicesPage() {
{ name: "Client Login", id: "/login" },
];
const themeProps = {
defaultButtonVariant: "elastic-effect", defaultTextAnimation: "reveal-blur", borderRadius: "pill", contentWidth: "mediumLarge", sizing: "largeSmallSizeMediumTitles", background: "circleGradient", cardStyle: "glass-elevated", primaryButtonStyle: "diagonal-gradient", secondaryButtonStyle: "radial-glow", headingFontWeight: "extrabold"};
const themeProps: ThemeProviderProps = {
defaultButtonVariant: "elastic-effect", defaultTextAnimation: "reveal-blur", borderRadius: "pill", contentWidth: "mediumLarge", sizing: "largeSmallSizeMediumTitles", background: "circleGradient", cardStyle: "glass-elevated", primaryButtonStyle: "diagonal-gradient", secondaryButtonStyle: "radial-glow", headingFontWeight: "extrabold"
};
const pageSections = [
{
@@ -42,7 +43,7 @@ export default function ServicesPage() {
},
],
title: "Comprehensive Digital Marketing Solutions", description: "eXpand AD provides a full spectrum of services designed to enhance your online presence and achieve your business objectives.", tag: "Our Expertise", tagIcon: Layers,
},
} as FeatureCardTwentySixProps,
},
{
id: "performance-insights", Component: MetricCardThree,
@@ -82,7 +83,8 @@ export default function ServicesPage() {
],
},
],
copyrightText: "© 2024 eXpand AD. All rights reserved."},
copyrightText: "© 2024 eXpand AD. All rights reserved."
},
},
];
@@ -94,7 +96,8 @@ export default function ServicesPage() {
navItems={navItems}
brandName="eXpand AD"
button={{
text: "Get a Quote", href: "/contact"}}
text: "Get a Quote", href: "/contact"
}}
/>
</div>