|
|
|
|
@@ -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 (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1419,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|