8 Commits

Author SHA1 Message Date
5aab6acdb0 Update src/app/page.tsx 2026-03-06 18:31:10 +00:00
df46c1fc71 Update src/app/layout.tsx 2026-03-06 18:31:10 +00:00
9d4f3c7cbe Merge version_2 into main
Merge version_2 into main
2026-03-06 16:07:22 +00:00
12cccd789c Update src/app/page.tsx 2026-03-06 16:07:17 +00:00
1727c97fd4 Update src/app/layout.tsx 2026-03-06 16:07:16 +00:00
a971c27712 Merge version_1 into main
Merge version_1 into main
2026-03-06 16:02:07 +00:00
17d18242e3 Merge version_1 into main
Merge version_1 into main
2026-03-06 16:00:56 +00:00
dd6d0a3d1e Merge version_1 into main
Merge version_1 into main
2026-03-06 15:59:36 +00:00
2 changed files with 7 additions and 45 deletions

View File

@@ -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>
);
}

View File

@@ -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"
imageAlt="Abstract branding visuals and gradient shapes"
buttons={[
{ text: "Start Your Brand Journey", href: "contact" },
{ text: "Get Brand Strategy", href: "contact" },
{ text: "View Our Work", href: "portfolio" },
]}
buttonAnimation="slide-up"