|
|
|
|
@@ -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 - We Build Powerful Personal Brands", description: "Helping founders, creators and organizations grow through strategic branding, PR and digital marketing."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1419,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|