From 3869755256a76ded225b6e4c8b78cf858663ba50 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 05:45:01 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 63 +++++++++++++++++++++++++----------------- 1 file changed, 37 insertions(+), 26 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 2f52803..0019282 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -12,24 +12,24 @@ import { Briefcase, Users, Linkedin, Facebook, Mail } from "lucide-react"; export default function AboutPage() { const navItems = [ { name: "Services", id: "services" }, - { name: "Process", id: "process" }, { name: "Pricing", id: "pricing" }, + { name: "Testimonials", id: "testimonials" }, { name: "FAQ", id: "faq" }, { name: "Contact", id: "contact" }, ]; return ( {/* Navbar */} -- 2.49.1 From 05484bd0828eed3a1c1875731a96a2d20c09e7a6 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 05:45:02 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 1426 +------------------------------------------- 1 file changed, 6 insertions(+), 1420 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 36b540a..ffbcf50 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1430 +1,17 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Figtree } 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"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const figtree = Figtree({ - variable: "--font-figtree", - subsets: ["latin"], -}); +import "./styles/globals.css"; export const metadata: Metadata = { - title: "USA Citizenship Legal Consultation | Expert Immigration Attorneys", - description: "Book affordable 30 or 60-minute consultations with experienced immigration attorneys. Expert guidance on USA citizenship applications, interviews, and documentation.", - keywords: "USA citizenship consultation, immigration attorney, legal services, citizenship application", - metadataBase: new URL("https://legalpath.com"), - alternates: { - canonical: "https://legalpath.com", - }, - openGraph: { - title: "LegalPath - Expert USA Citizenship Consultations", - description: "Schedule confidential legal consultations with experienced immigration attorneys", - url: "https://legalpath.com", - siteName: "LegalPath", - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "Expert USA Citizenship Legal Guidance | LegalPath", - description: "Book your immigration law consultation today", - }, -}; + title: "LegalPath | Expert USA Citizenship Immigration Law Services", description: "Schedule confidential consultations with experienced immigration attorneys. Affordable 30-minute or 60-minute sessions to guide your citizenship journey."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -