Update src/app/layout.tsx

This commit is contained in:
2026-03-03 18:59:29 +00:00
parent 251e100b07
commit 3b9a7e89dd

View File

@@ -1,47 +1,17 @@
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";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
import "./styles/globals.css";
export const metadata: Metadata = {
title: "Web Design Agency | Custom Website Design Services", description: "Professional web design services that drive results. We build stunning websites that give customers insight and desire to choose your business.", keywords: "web design, website design, custom web design, agency, web development", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Web Design Agency | Custom Website Design Services", description: "Professional web design services that drive results. We build stunning websites that give customers insight and desire to choose your business.", type: "website", siteName: "Webuild"},
};
title: "Webuild - Web Design Agency", description: "Transform your business with stunning, high-performing websites that convert. Web design services for businesses nationwide."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1409,7 +1379,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}