7 Commits

Author SHA1 Message Date
191b10576d Update src/app/page.tsx 2026-03-07 09:27:22 +00:00
78be74dbc2 Update src/app/layout.tsx 2026-03-07 09:27:22 +00:00
03ba60c440 Merge version_1 into main
Merge version_1 into main
2026-03-07 09:26:00 +00:00
962fc19fae Merge version_1 into main
Merge version_1 into main
2026-03-07 09:25:05 +00:00
d23c858109 Merge version_1 into main
Merge version_1 into main
2026-03-07 09:23:27 +00:00
6b583d741a Merge version_1 into main
Merge version_1 into main
2026-03-07 09:21:23 +00:00
01e6838837 Merge version_1 into main
Merge version_1 into main
2026-03-07 09:19:49 +00:00
2 changed files with 9 additions and 44 deletions

View File

@@ -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>
);
}

View File

@@ -108,6 +108,9 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttons={[
{ text: "Explore All Services", href: "#contact" }
]}
/>
</div>