From 9994aa953b34ca5dbb00a6cb81a3c6591cdc82c9 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 11:49:35 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 62 ++++++++++------------------------------------ 1 file changed, 13 insertions(+), 49 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0492ae8..821c15b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,64 +1,29 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; -import { DM_Sans } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; +import "./styles/base.css"; 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 geist = Geist({ + variable: "--font-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Web Design & Performance Marketing | Precision Lead Systems", description: "Modern web design ($250 AUD) + organic marketing + performance-based paid ads. We grow when you grow. Book a call with our Sydney-based agency.", keywords: "web design, performance marketing, paid advertising, organic social media, digital marketing agency, Sydney, Australia", metadataBase: new URL("https://www.precisionleadsystems.com"), - alternates: { - canonical: "https://www.precisionleadsystems.com" - }, - openGraph: { - title: "Precision Lead Systems - Web Design & Marketing for Growing Businesses", description: "Get a stunning website at $250 AUD + performance-based marketing. We earn 10% commission on revenue generated. Aligned incentives. Real results.", url: "https://www.precisionleadsystems.com", siteName: "Precision Lead Systems", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKcwj0XHqsibbvpukeOn0v4r/a-sleek-modern-web-design-dashboard-inte-1772796761150-8f8cc140.png", alt: "Precision Lead Systems - Web Design & Marketing Dashboard" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Web Design & Performance Marketing - Precision Lead Systems", description: "Designed to Be Seen. Built to Perform. Modern web design, organic growth, and performance-based advertising.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKcwj0XHqsibbvpukeOn0v4r/a-sleek-modern-web-design-dashboard-inte-1772796761150-8f8cc140.png"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Precision Lead Systems - Web Design & Performance Marketing", description: "Web design and performance marketing for growing businesses. Custom websites, organic growth, and paid advertising with commission-based pricing."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +