diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6cdc293..80019a2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Raleway } 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 raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "MEO Digital Media | Social Media Marketing & Web Development", description: "Transform your brand with comprehensive digital marketing, SEO, social media, video production, web development, and cloud computing solutions.", keywords: "digital marketing, social media marketing, SEO, web development, video production, content strategy, cloud computing, branding", metadataBase: new URL("https://meodigitalmedia.com"), - alternates: { - canonical: "https://meodigitalmedia.com" - }, - openGraph: { - title: "MEO Digital Media - Digital Marketing Excellence", description: "Your complete digital partner for social media, SEO, content marketing, video production, and web development.", url: "https://meodigitalmedia.com", siteName: "MEO Digital Media", type: "website", images: [{ - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbxDlZjWfQ1cmjRiiRFRAQ9gZR/a-sleek-modern-digital-marketing-workspa-1772875139553-12c3f980.png", alt: "A sleek, modern digital marketing workspace with multiple screens displaying analytics, social media" - }] - }, - twitter: { - card: "summary_large_image", title: "MEO Digital Media | Digital Marketing Solutions", description: "Transform your brand with comprehensive digital marketing and web development services.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbxDlZjWfQ1cmjRiiRFRAQ9gZR/a-sleek-modern-digital-marketing-workspa-1772875139553-12c3f980.png"] - }, - robots: { - index: true, - follow: true - } -}; + title: "MEO Digital Media", description: "Digital Marketing Excellence Redefined"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}