From 252e7fcb1127b2577a33101a646c89d2a110674f Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 01:31:37 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 46 +++++++--------------------------------------- 1 file changed, 7 insertions(+), 39 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e9be26c..9665520 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,20 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "The Sales Lab | Premium Sales Training by Renee Dee", description: "Transform your sales career with The Sales Lab's exclusive, boutique-level training. 10 seats only. $7,500 for the 3-month intensive. Master pipeline, closing, and premium pricing.", keywords: "sales training, premium coaching, sales intensive, pipeline mastery, Renee Dee, sales professionals", metadataBase: new URL("https://thesaleslab.com"), - alternates: { - canonical: "https://thesaleslab.com"}, - openGraph: { - title: "Your Biggest Sales Year Starts Here | The Sales Lab", description: "An intensive, boutique-level sales training program for professionals ready to transform their pipeline and build unstoppable income.", url: "https://thesaleslab.com", siteName: "The Sales Lab", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/businessman-smiling-airport-terminal_107420-85119.jpg", alt: "The Sales Lab - Premium Sales Training"}, - ], - }, - twitter: { - card: "summary_large_image", title: "The Sales Lab | Premium Sales Training", description: "Transform your sales career. 10 seats only. Join Renee Dee for an intensive program designed for serious professionals.", images: ["http://img.b2bpic.net/free-photo/businessman-smiling-airport-terminal_107420-85119.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "The Sales Lab", description: "An intensive, boutique-level sales training program designed exclusively for professionals ready to transform their pipeline, close with certainty, and build unstoppable income."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}