diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 93e92e8..56a1269 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,74 +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 "./styles/variables.css"; 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"], -}); export const metadata: Metadata = { - title: "CSBIMAGERY | Professional Videography & Sports Livestreaming Services", - description: "Professional videography, photography, and sports livestreaming services. Specialising in documentaries, social media content, and event coverage. Get a free quote today.", - keywords: "videography, photography, sports livestreaming, documentary filmmaker, event videography, social media content production, professional video production", - metadataBase: new URL("https://csbimagery.com"), - alternates: { - canonical: "https://csbimagery.com", - }, - openGraph: { - title: "CSBIMAGERY | Professional Production Services", - description: "Capture powerful stories with professional videography and sports livestreaming solutions.", - type: "website", - siteName: "CSBIMAGERY", - images: [ - { - url: "http://img.b2bpic.net/free-photo/professional-cameraman-recording-poeple-watching-football-public-place-night_1268-18138.jpg", - alt: "CSBIMAGERY - Professional Videography Services", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "CSBIMAGERY | Professional Videography Services", - description: "Professional videography, photography & sports livestreaming.", - images: ["http://img.b2bpic.net/free-photo/group-bicycles-forest_53876-40323.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "CSBIMAGERY - Professional Videography, Photography & Sports Livestreaming", description: "Professional videography, photography, and sports livestreaming services for brands, sports events, and organisations."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +