diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 51e865a..557b464 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -6,14 +6,13 @@ import HeroSplit from "@/components/sections/hero/HeroSplit"; import FeatureCardSeven from "@/components/sections/feature/FeatureCardSeven"; import ContactSplit from "@/components/sections/contact/ContactSplit"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; -import Link from "next/link"; import { Rocket, CheckCircle } from "lucide-react"; export default function AboutPage() { const navItems = [ { name: "Home", id: "/" }, { name: "Services", id: "/services" }, - { name: "How It Works", id: "/#process" }, + { name: "Why Choose Us", id: "/#why-choose-us" }, { name: "Portfolio", id: "/#portfolio" }, { name: "Contact", id: "/contact" }, ]; @@ -35,9 +34,9 @@ export default function AboutPage() { }, { title: "Support", items: [ - { label: "FAQ", href: "/" }, - { label: "How It Works", href: "/#process" }, - { label: "Bulk Orders", href: "/" }, + { label: "FAQ", href: "/contact" }, + { label: "How It Works", href: "/services" }, + { label: "Bulk Orders", href: "/contact" }, ], }, { @@ -162,7 +161,7 @@ export default function AboutPage() { diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index b60eced..b9236c7 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -5,14 +5,13 @@ import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloating import HeroSplit from "@/components/sections/hero/HeroSplit"; import ContactSplit from "@/components/sections/contact/ContactSplit"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; -import Link from "next/link"; import { Phone } from "lucide-react"; export default function ContactPage() { const navItems = [ { name: "Home", id: "/" }, { name: "Services", id: "/services" }, - { name: "How It Works", id: "/#process" }, + { name: "Why Choose Us", id: "/#why-choose-us" }, { name: "Portfolio", id: "/#portfolio" }, { name: "Contact", id: "/contact" }, ]; @@ -34,9 +33,9 @@ export default function ContactPage() { }, { title: "Support", items: [ - { label: "FAQ", href: "/" }, - { label: "How It Works", href: "/#process" }, - { label: "Bulk Orders", href: "/" }, + { label: "FAQ", href: "/contact" }, + { label: "How It Works", href: "/services" }, + { label: "Bulk Orders", href: "/contact" }, ], }, { @@ -81,7 +80,7 @@ export default function ContactPage() { tagAnimation="slide-up" background={{ variant: "glowing-orb" }} buttons={[ - { text: "Call Us: (360) 555-0123", href: "tel:+13605550123" }, + { text: "Call Us: 360-550-6540", href: "tel:+13605506540" }, { text: "View Services", href: "/services" }, ]} buttonAnimation="slide-up" @@ -117,11 +116,13 @@ export default function ContactPage() {

Olympia Location

-

123 Print Street

-

Olympia, WA 98501

-

United States

+

625 Black Lake Blvd SW

+

Suite 221

+

Olympia, WA 98502

Phone

-

(360) 555-0123

+

+ 360-550-6540 +

Email

info@customapparelco.com

@@ -144,7 +145,7 @@ export default function ContactPage() {
diff --git a/src/app/layout.tsx b/src/app/layout.tsx index adf58dd..14e5981 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,13 +1,7 @@ import type { Metadata } from "next"; -import { Libre_Baskerville } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", subsets: ["latin"], - weight: ["400", "700"], -}); - const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); @@ -38,7 +32,7 @@ export default function RootLayout({ }>) { return ( - + {children}