diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 521546e..42489b4 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -32,6 +32,7 @@ export default function BlogPage() { { name: "Services", id: "services" }, { name: "Results", id: "metrics" }, { name: "Case Studies", id: "casestudies" }, + { name: "SEO", id: "/seo" }, { name: "Pricing", id: "pricing" }, { name: "Contact", id: "contact" } ]} @@ -64,7 +65,7 @@ export default function BlogPage() { { items: [ { label: "Services", href: "services" }, - { label: "SEO", href: "#" }, + { label: "SEO", href: "/seo" }, { label: "PPC Advertising", href: "#" }, { label: "Social Media", href: "#" } ] @@ -73,7 +74,7 @@ export default function BlogPage() { items: [ { label: "Company", href: "#" }, { label: "About Us", href: "#" }, - { label: "Case Studies", href: "casestudies" }, + { label: "Case Studies", href: "/" }, { label: "Careers", href: "#" } ] }, @@ -99,4 +100,4 @@ export default function BlogPage() { ); -} \ No newline at end of file +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a0d6a57..c533cbd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1330,4 +1330,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 0d83ef2..4f6e301 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,6 +33,7 @@ export default function LandingPage() { { name: "Services", id: "services" }, { name: "Results", id: "metrics" }, { name: "Case Studies", id: "casestudies" }, + { name: "SEO", id: "/seo" }, { name: "Pricing", id: "pricing" }, { name: "Contact", id: "contact" } ]} @@ -225,7 +226,7 @@ export default function LandingPage() { { items: [ { label: "Services", href: "services" }, - { label: "SEO", href: "#" }, + { label: "SEO", href: "/seo" }, { label: "PPC Advertising", href: "#" }, { label: "Social Media", href: "#" } ] @@ -259,4 +260,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +} diff --git a/src/app/seo/page.tsx b/src/app/seo/page.tsx new file mode 100644 index 0000000..5fe6af5 --- /dev/null +++ b/src/app/seo/page.tsx @@ -0,0 +1,188 @@ +"use client"; + +import React from "react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; +import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree'; +import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; +import BlogCardOne from '@/components/sections/blog/BlogCardOne'; +import ContactText from '@/components/sections/contact/ContactText'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import { Sparkles, TrendingUp, Zap, Award } from "lucide-react"; + +export default function SEOPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 2e0dbca..118169f 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -89,6 +89,7 @@ export default function ProductPage({ params }: ProductPageProps) { {"name":"Services","id":"services"}, {"name":"Results","id":"metrics"}, {"name":"Case Studies","id":"casestudies"}, + {"name":"SEO","id":"/seo"}, {"name":"Pricing","id":"pricing"}, {"name":"Contact","id":"contact"}, {"name":"Shop","id":"/shop"} @@ -103,8 +104,8 @@ export default function ProductPage({ params }: ProductPageProps) { ); -} \ No newline at end of file +} diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 2c52e19..6141d13 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -41,6 +41,7 @@ export default function ShopPage() { {"name":"Services","id":"services"}, {"name":"Results","id":"metrics"}, {"name":"Case Studies","id":"casestudies"}, + {"name":"SEO","id":"/seo"}, {"name":"Pricing","id":"pricing"}, {"name":"Contact","id":"contact"}, {"name":"Shop","id":"/shop"} @@ -55,8 +56,8 @@ export default function ShopPage() { ); -} \ No newline at end of file +}