Update src/app/layout.tsx

This commit is contained in:
2026-03-15 15:29:37 +00:00
parent 7a283a85f8
commit 7c77f3d6e4

View File

@@ -1,24 +1,54 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { DM_Sans } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Digital Engineering | Websites, Automation & AI",
description: "Engineering digital systems that work. High-performance websites, automation systems, and AI infrastructure for modern businesses.",
keywords: "software engineering, web development, automation systems, AI infrastructure, digital solutions, business automation",
metadataBase: new URL("https://digitalengineering.dev"),
alternates: {
canonical: "https://digitalengineering.dev",
},
openGraph: {
title: "Digital Engineering | Websites, Automation & AI",
description: "Engineering digital systems that work. Websites, automation, and AI infrastructure for modern businesses.",
url: "https://digitalengineering.dev",
siteName: "Digital Engineering",
type: "website",
},
twitter: {
card: "summary_large_image",
title: "Digital Engineering | Websites, Automation & AI",
description: "Engineering digital systems that work. High-performance solutions for modern businesses.",
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +57,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +71,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}