Update src/app/services/page.tsx
This commit is contained in:
@@ -7,7 +7,7 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
|
||||
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ServicesPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
@@ -25,32 +25,15 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Pricing",
|
||||
id: "/pricing",
|
||||
},
|
||||
{
|
||||
name: "Blog",
|
||||
id: "/blog",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Pricing", id: "/pricing" },
|
||||
{ name: "Blog", id: "/blog" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Digitech Solutions"
|
||||
button={{ text: "Contact Us", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -60,26 +43,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
tag: "SEM",
|
||||
title: "SEM",
|
||||
subtitle: "Ads",
|
||||
description: "Manage ads.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/optical-fiber-background_23-2149301539.jpg",
|
||||
},
|
||||
tag: "SEM", title: "SEM", subtitle: "Ads", description: "Manage ads.", imageSrc: "http://img.b2bpic.net/free-photo/optical-fiber-background_23-2149301539.jpg"},
|
||||
{
|
||||
tag: "Content",
|
||||
title: "Content",
|
||||
subtitle: "Writing",
|
||||
description: "Creative copy.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/social-media-marketing-concept-marketing-with-applications_23-2150063124.jpg",
|
||||
},
|
||||
tag: "Content", title: "Content", subtitle: "Writing", description: "Creative copy.", imageSrc: "http://img.b2bpic.net/free-photo/social-media-marketing-concept-marketing-with-applications_23-2150063124.jpg"},
|
||||
{
|
||||
tag: "Strategy",
|
||||
title: "Strategy",
|
||||
subtitle: "Planning",
|
||||
description: "Marketing roadmaps.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/market-trends-concept-with-computer_23-2150372439.jpg",
|
||||
},
|
||||
tag: "Strategy", title: "Strategy", subtitle: "Planning", description: "Marketing roadmaps.", imageSrc: "http://img.b2bpic.net/free-photo/market-trends-concept-with-computer_23-2150372439.jpg"},
|
||||
]}
|
||||
title="Our Services"
|
||||
description="We offer full-cycle digital marketing."
|
||||
@@ -94,24 +62,8 @@ export default function LandingPage() {
|
||||
title="Performance Indicators"
|
||||
description="Data-backed results for your business."
|
||||
metrics={[
|
||||
{
|
||||
id: "s1",
|
||||
value: "95%",
|
||||
title: "Client Retention",
|
||||
items: [
|
||||
"Long-term value",
|
||||
"Dedicated support",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "s2",
|
||||
value: "4.8/5",
|
||||
title: "Average Satisfaction",
|
||||
items: [
|
||||
"Expert guidance",
|
||||
"Quality delivery",
|
||||
],
|
||||
},
|
||||
{ id: "s1", value: "95%", title: "Client Retention", items: ["Long-term value", "Dedicated support"] },
|
||||
{ id: "s2", value: "4.8/5", title: "Average Satisfaction", items: ["Expert guidance", "Quality delivery"] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -119,30 +71,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Pricing",
|
||||
href: "/pricing",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Blog",
|
||||
href: "/blog",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ items: [{ label: "About", href: "/about" }, { label: "Pricing", href: "/pricing" }] },
|
||||
{ items: [{ label: "Blog", href: "/blog" }, { label: "Contact", href: "/contact" }] },
|
||||
]}
|
||||
logoText="Digitech Solutions"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user