From 8698bf43a0ec87fec530f4e0c0b9d49c8ad12ef5 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 03:03:23 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1422 +------------------------------------------- 1 file changed, 7 insertions(+), 1415 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 54ff506..5b29c51 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1427 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Inter_Tight } 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 interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Turn Your Audience Into Premium Revenue | Growth Operator", description: "Help educational creators launch high-ticket programs and monetize engaged audiences. Strategic positioning, proven launch sequences, and transparent results.", keywords: "content creator monetization, high-ticket program launch, audience revenue, creator coaching, educational content monetization, online course launch", metadataBase: new URL("https://growthoperator.com"), - alternates: { - canonical: "https://growthoperator.com" - }, - openGraph: { - title: "Turn Your Audience Into Premium Revenue", description: "We help educational creators launch high-ticket programs that sell. Strategic positioning, audience segmentation, proven launch sequences.", url: "https://growthoperator.com", siteName: "Growth Operator", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-vector/running-mobile-app-infographic-flat-design_52683-15950.jpg", alt: "Revenue analytics and program launch dashboard" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Turn Your Audience Into Premium Revenue", description: "Strategic positioning, audience segmentation, proven launches. For creators 10k–500k followers.", images: ["http://img.b2bpic.net/free-vector/running-mobile-app-infographic-flat-design_52683-15950.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Growth Operator - Turn Your Audience Into Premium Revenue", description: "We help educational creators launch high-ticket programs that sell. Through strategic positioning, audience segmentation, and proven launch sequences, your engaged followers become paying members."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -