From b53126e28de24159d70c08d583db8bb5d84e7bbb Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 19:03:53 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1422 +------------------------------------------- 1 file changed, 19 insertions(+), 1403 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 503f0a5..a145f34 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1422 +1,31 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito_Sans } 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 nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", subsets: ["latin"], -}); - export const metadata: Metadata = { - title: "Dube N Attorneys Inc | Civil Law Johannesburg", description: "Expert civil law services in Johannesburg. Property transfers, contract review, civil litigation. Call 011 492 7438 for professional legal advice.", keywords: "civil law, attorneys johannesburg, property transfers, legal services, contract review, civil litigation", metadataBase: new URL("https://www.dubenattorneys.co.za"), - alternates: { - canonical: "https://www.dubenattorneys.co.za"}, - openGraph: { - title: "Dube N Attorneys Inc - Civil Law Experts", description: "Professional legal services for property transfers, civil disputes, and contract matters in Johannesburg.", url: "https://www.dubenattorneys.co.za", siteName: "Dube N Attorneys Inc", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/businesswomen-doing-interview_1098-663.jpg", alt: "Dube N Attorneys Professional Legal Services"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Dube N Attorneys Inc | Civil Law Services", description: "Trusted civil law attorneys in Johannesburg. Expert property transfers and legal consultation.", images: ["http://img.b2bpic.net/free-photo/businesswomen-doing-interview_1098-663.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Dube N Attorneys Inc | Civil Law Specialists in Johannesburg", description: "Professional civil law services in Johannesburg. Property transfers, civil disputes, contract review. Call 011 492 7438 for expert legal advice."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - +