diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 65f6347..9ce0f7f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,75 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Poppins } 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 poppins = Poppins({ - variable: "--font-poppins", - subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "ThirdLinkMedia - Performance Marketing for High-Value Businesses", - description: "Performance marketing agency for service businesses. We've spent $2.5M learning what works. Direct strategy from Joshua & Harrison. No BS.", - keywords: "performance marketing, digital marketing agency, paid advertising, lead generation, marketing strategy", - metadataBase: new URL("https://thirdlinkmedia.com.au"), - alternates: { - canonical: "https://thirdlinkmedia.com.au", - }, - openGraph: { - title: "ThirdLinkMedia - Performance Marketing Agency", - description: "Performance marketing for service businesses charging $5K+. We've spent $2.5M on ads. We know what works.", - url: "https://thirdlinkmedia.com.au", - siteName: "ThirdLinkMedia", - type: "website", - images: [ - { - url: "https://thirdlinkmedia.com.au/og-image.png", - alt: "ThirdLinkMedia Performance Marketing", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "ThirdLinkMedia - Performance Marketing", - description: "Performance marketing for service businesses. We know what works because we paid to learn it.", - images: ["https://thirdlinkmedia.com.au/twitter-image.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "ThirdLinkMedia", description: "Performance marketing agency for high-value businesses"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}