Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5aab6acdb0 | |||
| df46c1fc71 | |||
| 9d4f3c7cbe | |||
| 12cccd789c | |||
| 1727c97fd4 | |||
| a971c27712 | |||
| 17d18242e3 | |||
| dd6d0a3d1e |
@@ -1,57 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Montserrat } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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"),
|
title: "GMB - We Build Powerful Personal Brands", description: "Helping founders, creators and organizations grow through strategic branding, PR and digital marketing."};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1419,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ export default function LandingPage() {
|
|||||||
imageSrc="http://img.b2bpic.net/free-photo/watch-blank-paper-father-s-day_23-2147683462.jpg?_wi=1"
|
imageSrc="http://img.b2bpic.net/free-photo/watch-blank-paper-father-s-day_23-2147683462.jpg?_wi=1"
|
||||||
imageAlt="Abstract branding visuals and gradient shapes"
|
imageAlt="Abstract branding visuals and gradient shapes"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Start Your Brand Journey", href: "contact" },
|
{ text: "Get Brand Strategy", href: "contact" },
|
||||||
{ text: "View Our Work", href: "portfolio" },
|
{ text: "View Our Work", href: "portfolio" },
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
|
|||||||
Reference in New Issue
Block a user