diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 330f890..56b3b00 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,80 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; -import { DM_Sans } 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 manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Social Elevation - Premium Social Media Agency", - description: "Transform your brand with data-driven social media strategies. 200+ brands trust us for content creation, community management, and paid advertising.", - keywords: "social media agency, social media marketing, content creation, digital marketing, social strategy", - metadataBase: new URL("https://socialelevation.com"), - alternates: { - canonical: "https://socialelevation.com", - }, - openGraph: { - title: "Social Elevation - Premium Social Media Agency", - description: "Elevate your brand's social presence. We craft compelling narratives that drive measurable results across all platforms.", - url: "https://socialelevation.com", - siteName: "Social Elevation", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/crop-coworkers-using-modern-devices-desk_23-2147787547.jpg", - alt: "Social Elevation - Premium Social Media Services", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Social Elevation - Premium Social Media Agency", - description: "Transform your brand with data-driven social media strategies and creative excellence.", - images: ["http://img.b2bpic.net/free-photo/crop-coworkers-using-modern-devices-desk_23-2147787547.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Social Elevation", description: "Transform your brand's social presence with data-driven strategies and creative excellence"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}