From 507000b9a53bab35e76fc21acdea68da75fa58c5 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 23:11:57 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1415 +------------------------------------------- 1 file changed, 16 insertions(+), 1399 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 53a004a..f1364c0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1413 +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"; +import type { Metadata } from 'next'; +import { Geist, Geist_Mono } from 'next/font/google'; +import './globals.css'; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: '--font-geist-sans', + subsets: ['latin'], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: '--font-geist-mono', + subsets: ['latin'], }); export const metadata: Metadata = { - title: "Sid | Strategic Web Design for Conversions", description: "Conversion-focused web design for business owners. Between cheap freelancers and expensive agencies. Strategic positioning + premium design = results.", keywords: "web design sydney, conversion optimization, framer development, brand strategy, freelance web designer", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Sid | Strategic Web Design for Conversions", description: "Conversion-focused web design for business owners. Between cheap freelancers and expensive agencies.", type: "website", siteName: "Sid"}, + title: 'Sid | Strategic Web Design Partner', + description: 'Build websites that generate leads, not just look pretty. Strategic web design and conversion optimization for business growth.', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -