Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #4.
This commit is contained in:
@@ -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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user