From 1727c97fd47cb8a61c1d9bf9017c691018fbf604 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 16:07:16 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 14954e1..b8211b4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Montserrat } 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 montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "GMB - PR & Marketing Agency | Build Powerful Brands", description: "Transform your brand influence with GMB. Strategic branding, PR, and digital marketing for founders, creators, and organizations. Book your strategy call today.", keywords: "PR agency, marketing agency, personal branding, brand strategy, media outreach, digital marketing, founder branding", metadataBase: new URL("https://gmbagency.com"), - alternates: { - canonical: "https://gmbagency.com"}, - openGraph: { - title: "GMB - Build Powerful Personal Brands That Influence Markets", description: "Strategic branding and marketing solutions designed to elevate your influence. Work with GMB's expert team.", url: "https://gmbagency.com", siteName: "GMB Agency", images: [ - { - url: "http://img.b2bpic.net/free-photo/watch-blank-paper-father-s-day_23-2147683462.jpg", alt: "GMB - Build Powerful Personal Brands"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "GMB - Build Powerful Personal Brands", description: "Turning Ideas Into Growing Brands. Strategic PR, branding, and marketing for founders and creators.", images: ["http://img.b2bpic.net/free-photo/watch-blank-paper-father-s-day_23-2147683462.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "GMB - Personal Branding & Marketing Agency", description: "Build powerful personal brands that influence markets. Strategic branding, PR, and digital marketing solutions for founders and creators."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}