From b83bffda5301f4cbc0cf853e8afb7d9bf452de6d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 07:23:13 +0000 Subject: [PATCH 1/3] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 46 +++++++++++++++++++++------------------- 1 file changed, 24 insertions(+), 22 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index f2c41c7..0ad48ed 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,37 +1,36 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; -import FaqDouble from "@/components/sections/faq/FaqDouble"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; import ContactSplit from "@/components/sections/contact/ContactSplit"; import FooterBase from "@/components/sections/footer/FooterBase"; export default function ContactPage() { const navItems = [ - { name: "Services", id: "services" }, - { name: "Portfolio", id: "portfolio" }, - { name: "About", id: "about" }, - { name: "Insights", id: "blog" }, - { name: "Contact", id: "contact" }, + { name: "Home", id: "/" }, + { name: "Services", id: "#services" }, + { name: "About", id: "#about" }, + { name: "Contact", id: "/contact" }, ]; const navButton = { - text: "View Our Work", href: "/portfolio"}; + text: "Get Started", href: "#"}; const footerColumns = [ { - title: "Services", items: [ - { label: "Web Design", href: "/services" }, - { label: "Development", href: "/services" }, - { label: "UX/UI Strategy", href: "/services" }, - { label: "Brand & Identity", href: "/services" }, + title: "Product", items: [ + { label: "Features", href: "#features" }, + { label: "Pricing", href: "#pricing" }, + { label: "Security", href: "#security" }, + { label: "Enterprise", href: "#enterprise" }, ], }, { title: "Company", items: [ - { label: "About Us", href: "/about" }, - { label: "Portfolio", href: "/portfolio" }, - { label: "Team", href: "/about" }, + { label: "About", href: "#about" }, + { label: "Blog", href: "/blog" }, + { label: "Careers", href: "#careers" }, { label: "Contact", href: "/contact" }, ], }, @@ -39,8 +38,8 @@ export default function ContactPage() { title: "Connect", items: [ { label: "LinkedIn", href: "https://linkedin.com" }, { label: "Twitter", href: "https://twitter.com" }, - { label: "Instagram", href: "https://instagram.com" }, - { label: "Dribbble", href: "https://dribbble.com" }, + { label: "GitHub", href: "https://github.com" }, + { label: "Discord", href: "https://discord.com" }, ], }, ]; @@ -59,7 +58,7 @@ export default function ContactPage() { headingFontWeight="normal" > ); -} \ No newline at end of file +} -- 2.49.1 From f173c7c26eebfa2818d23c0887cb789a6e795843 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 07:23:13 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 69 ++++++---------------------------------------- 1 file changed, 9 insertions(+), 60 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 272b71a..436c872 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,74 +1,24 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); +import "./styles/variables.css"; +import "./styles/base.css"; const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Apex Digital Partners | Web Design & Development", - description: "Premium web design and development agency for ambitious brands. We create transformative digital experiences that drive growth. 150+ projects delivered.", - keywords: "web design, web development, UX UI design, digital agency, web design services, custom development", - metadataBase: new URL("https://apexdigitalpartners.com"), - alternates: { - canonical: "https://apexdigitalpartners.com", - }, - openGraph: { - title: "Apex Digital Partners - Transform Your Digital Presence", - description: "Premium web design, development, and digital strategy for ambitious brands seeking market-leading solutions.", - url: "https://apexdigitalpartners.com", - siteName: "Apex Digital Partners", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AW2rAHmDcSblhmPtJ4YXRL0jWg/a-stunning-modern-website-interface-for--1772694295523-13a7fbee.png", - alt: "Apex Digital Partners - Digital Experience Design", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Apex Digital Partners | Premium Web Design & Development", - description: "Transform your digital presence with award-winning design and development services.", - images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AW2rAHmDcSblhmPtJ4YXRL0jWg/a-stunning-modern-website-interface-for--1772694295523-13a7fbee.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Apex Digital", description: "Digital experiences that drive growth"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}