Update src/app/layout.tsx

This commit is contained in:
2026-03-08 21:44:56 +00:00
parent 1b645603d3
commit 3adbe67265

View File

@@ -1,28 +1,17 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
title: "Webild Design - Award-Winning Digital Design Agency", description:
"Transform your brand with exceptional web design and development services. We create stunning digital experiences that drive engagement and results."};
title: "Webild Design - Award-Winning Digital Design Agency", description: "Transform your brand with exceptional web design, development, and digital strategy. Award-winning agency specializing in stunning user experiences."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<body
className={`${inter.variable} bg-background text-foreground antialiased`}
>
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1390,14 +1379,6 @@ export default function RootLayout({
}}
/>
</body>
<script
async
src="https://cdn.jsdelivr.net/npm/gsap@3.12.2/dist/gsap.min.js"
></script>
<script
async
src="https://cdn.jsdelivr.net/npm/gsap@3.12.2/dist/ScrollTrigger.min.js"
></script>
</html>
);
}