From e602f530f719129fa7de77fac59e5b6ad0b14e7c Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 01:37:12 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 42 ++++++++++++------------------------------ 1 file changed, 12 insertions(+), 30 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6861269..181dd57 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,45 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Figtree } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Content Collective | Strategic Storytelling for Enterprise Brands", description: "Premium content agency delivering strategic storytelling and production for C-suite executives and marketing leaders seeking measurable business growth.", keywords: "content agency, strategic storytelling, content production, brand narrative, enterprise content strategy, B2B content, digital marketing", openGraph: { - title: "Content Collective | Strategic Storytelling for Enterprise Brands", description: "Transform your brand narrative. Strategic content production for ambitious enterprises.", siteName: "Content Collective", type: "website"}, - twitter: { - card: "summary_large_image", title: "Content Collective | Strategic Storytelling for Enterprise Brands", description: "Premium content strategy and production for market-leading brands"}, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +