diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 35ae0ae..579fdbe 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -6,14 +6,14 @@ import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatin import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout"; import TeamCardEleven from "@/components/sections/team/TeamCardEleven"; import FooterBase from "@/components/sections/footer/FooterBase"; -import { Sparkles, ArrowUpRight, Users, Trophy } from "lucide-react"; +import { Sparkles, Users } from "lucide-react"; const NAV_ITEMS = [ { name: "Home", id: "/" }, - { name: "Work", id: "work" }, + { name: "Portfolio", id: "/portfolio" }, { name: "Services", id: "/services" }, { name: "About", id: "/about" }, - { name: "Contact", id: "contact" } + { name: "Contact", id: "/contact" } ]; const FOOTER_COLUMNS = [ @@ -22,16 +22,16 @@ const FOOTER_COLUMNS = [ { label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Services", href: "/services" }, - { label: "Work", href: "/#work" }, - { label: "Contact", href: "/#contact" }, + { label: "Work", href: "/portfolio" }, + { label: "Contact", href: "/contact" }, ], }, { title: "Services", items: [ - { label: "Web Development", href: "/services" }, - { label: "SEO", href: "/services" }, - { label: "Branding", href: "/services" }, - { label: "UI/UX Design", href: "/services" }, + { label: "Marketing Strategy", href: "/services" }, + { label: "Brand Identity", href: "/services" }, + { label: "Digital Campaigns", href: "/services" }, + { label: "Social Media Management", href: "/services" }, ], }, { @@ -62,11 +62,12 @@ export default function AboutPage() { +
+
+
+
+ ); diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index b9a2098..9b406ed 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -5,7 +5,6 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; import FooterBase from "@/components/sections/footer/FooterBase"; -import { Mail, Phone, MapPin, Sparkles } from "lucide-react"; const NAV_ITEMS = [ { name: "Home", id: "/" }, @@ -26,10 +25,10 @@ const FOOTER_COLUMNS = [ }, { title: "Services", items: [ - { label: "Web Development", href: "/services" }, - { label: "SEO", href: "/services" }, - { label: "Branding", href: "/services" }, - { label: "UI/UX Design", href: "/services" } + { label: "Marketing Strategy", href: "/services" }, + { label: "Brand Identity", href: "/services" }, + { label: "Digital Campaigns", href: "/services" }, + { label: "Social Media Management", href: "/services" } ] }, { @@ -62,6 +61,7 @@ export default function ContactPage() { navItems={NAV_ITEMS} button={{ text: "Get Started", href: "/contact" }} /> +
+
+ );