5 Commits

Author SHA1 Message Date
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 12 additions and 50 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 - 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 (
<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

@@ -92,22 +92,22 @@ export default function LandingPage() {
useInvertedBackground={false}
features={[
{
title: "Personal Branding", description: "Build an authentic personal brand that resonates with your audience and opens doors.", bentoComponent: "reveal-icon", icon: Users,
title: "Personal Branding", description: "Build authentic credibility that attracts opportunities. Establish a distinctive voice and presence that resonates with your target audience and opens doors to partnerships, speaking engagements, and growth.", bentoComponent: "reveal-icon", icon: Users,
},
{
title: "PR & Media Outreach", description: "Strategic media placements and press coverage that amplify your brand voice.", bentoComponent: "reveal-icon", icon: Megaphone,
title: "PR & Media Outreach", description: "Secure high-impact media placements that amplify your message. Strategic press coverage builds authority and reaches thousands, transforming you into a recognized industry voice.", bentoComponent: "reveal-icon", icon: Megaphone,
},
{
title: "Digital Marketing", description: "Data-driven campaigns across social, email, and digital channels for maximum reach.", bentoComponent: "reveal-icon", icon: Target,
title: "Digital Marketing", description: "Drive measurable results through data-driven campaigns across social, email, and digital channels. Convert engaged audiences into loyal customers and advocates for your brand.", bentoComponent: "reveal-icon", icon: Target,
},
{
title: "Brand Strategy", description: "Comprehensive strategy development that positions you as a market leader.", bentoComponent: "reveal-icon", icon: Lightbulb,
title: "Brand Strategy", description: "Develop a compelling positioning strategy that differentiates you in crowded markets. We craft the narrative and framework that positions you as the go-to authority in your space.", bentoComponent: "reveal-icon", icon: Lightbulb,
},
{
title: "Content Production", description: "High-quality content creation that tells your story and engages your audience.", bentoComponent: "reveal-icon", icon: Film,
title: "Content Production", description: "Create compelling stories and assets that captivate and engage. From videos to articles, our content amplifies your message and builds deeper connections with your audience.", bentoComponent: "reveal-icon", icon: Film,
},
{
title: "Reputation Management", description: "Proactive strategies to build and protect your brand reputation online.", bentoComponent: "reveal-icon", icon: Shield,
title: "Reputation Management", description: "Proactively build and protect your online brand presence. We monitor conversations, manage feedback, and strengthen your reputation as a trusted leader in your industry.", bentoComponent: "reveal-icon", icon: Shield,
},
]}
/>