Update src/app/layout.tsx

This commit is contained in:
2026-03-06 00:01:00 +00:00
parent 3493fccdea
commit 67f6afb23d

View File

@@ -1,76 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } from "next/font/google";
import { Geist, Geist_Mono } 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 geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "JB Digital - Digital Agency & Web Solutions",
description: "Transform your digital presence with JB Digital. Expert web design, app development, and digital marketing solutions for growing businesses.",
keywords: "digital agency, web design, app development, digital marketing, branding, web development",
metadataBase: new URL("https://jbdigital.com"),
alternates: {
canonical: "https://jbdigital.com",
},
openGraph: {
title: "JB Digital - Digital Agency & Web Solutions",
description: "Transform your digital presence with innovative digital solutions. Web design, app development, and marketing expertise.",
url: "https://jbdigital.com",
siteName: "JB Digital",
type: "website",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXznXm8Lo2SaW1hAuyt8VHTusE/a-modern-sleek-digital-dashboard-interfa-1772754205870-3185b4a7.png",
alt: "JB Digital - Digital Solutions",
},
],
},
twitter: {
card: "summary_large_image",
title: "JB Digital - Digital Agency & Web Solutions",
description: "Transform your digital presence with innovative digital solutions. Web design, app development, and marketing expertise.",
images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXznXm8Lo2SaW1hAuyt8VHTusE/a-modern-sleek-digital-dashboard-interfa-1772754205870-3185b4a7.png",
],
},
robots: {
index: true,
follow: true,
},
};
title: "Create Next App", description: "Generated by create next app"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1438,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}