Update src/app/layout.tsx

This commit is contained in:
2026-03-06 16:06:15 +00:00
parent 1d749c9b00
commit f94947bbe8

View File

@@ -1,82 +1,17 @@
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"],
});
export const metadata: Metadata = {
title: "JayaLanka Digital Solutions | Videography & Digital Marketing",
description: "Professional digital marketing, videography, and social media services in Sri Lanka. Transform your brand with creative content that drives results.",
keywords: "digital marketing Sri Lanka, videography services, social media marketing, advertisement reels, product photography, online marketing",
metadataBase: new URL("https://jayalankadigital.com"),
alternates: {
canonical: "https://jayalankadigital.com",
},
openGraph: {
title: "JayaLanka Digital Solutions",
description: "Transform your brand with professional videography and digital marketing services",
url: "https://jayalankadigital.com",
siteName: "JayaLanka Digital Solutions",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZurNOG75yXOFa2Il3PKpinWGc/a-professional-digital-marketing-creativ-1772812714162-bbecd80b.png",
alt: "JayaLanka Digital Solutions - Professional Digital Marketing & Videography",
},
],
type: "website",
},
twitter: {
card: "summary_large_image",
title: "JayaLanka Digital Solutions",
description: "Professional videography and digital marketing for Sri Lankan businesses",
images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZurNOG75yXOFa2Il3PKpinWGc/a-professional-digital-marketing-creativ-1772812714162-bbecd80b.png",
],
},
robots: {
index: true,
follow: true,
},
};
title: "JayaLanka Digital Solutions - Videography & Social Media Marketing", description: "Professional videography, social media marketing, and creative content services for brands in Sri Lanka."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1444,7 +1379,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}