diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 60cedbd..162862a 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -3,33 +3,33 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import ContactText from "@/components/sections/contact/ContactText"; -import FooterBase from "@/components/sections/footer/FooterBase"; +import FooterMedia from "@/components/sections/footer/FooterMedia"; import Link from "next/link"; export default function ContactPage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "About", id: "about" }, - { name: "Services", id: "services" }, - { name: "Social Spot", id: "social-spot" }, - { name: "Cosmic Monkey", id: "cosmic-monkey" }, + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Services", id: "/#services" }, + { name: "Social Spot", id: "/social-spot" }, + { name: "Cosmic Monkey", id: "/cosmic-monkey" }, ]; const footerColumns = [ { title: "Solutions", items: [ { label: "TG Entertainment", href: "/" }, - { label: "Social Spot", href: "/" }, - { label: "Cosmic Monkey", href: "/" }, - { label: "Services", href: "/" }, + { label: "Social Spot", href: "/social-spot" }, + { label: "Cosmic Monkey", href: "/cosmic-monkey" }, + { label: "Services", href: "/#services" }, ], }, { title: "Company", items: [ - { label: "About Us", href: "/" }, - { label: "Our Process", href: "/" }, - { label: "Team", href: "/" }, - { label: "Contact", href: "/contact" }, + { label: "About Us", href: "/#about" }, + { label: "Our Process", href: "/#services" }, + { label: "Team", href: "/#about" }, + { label: "Contact", href: "/#contact" }, ], }, { @@ -57,14 +57,8 @@ export default function ContactPage() { > ); -} \ No newline at end of file +}