Update src/app/layout.tsx

This commit is contained in:
2026-03-04 20:16:11 +00:00
parent ee03935252
commit 8915b7b8d0

View File

@@ -1,77 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Poppins } 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 poppins = Poppins({
variable: "--font-poppins",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "DevNest - Web Development Agency | Custom Websites for Business",
description: "DevNest creates stunning, high-performance websites for businesses. Custom web development, UI/UX design, and digital transformation solutions.",
keywords: "web development, web design agency, custom websites, UI/UX design, digital agency, web solutions",
metadataBase: new URL("https://devnest.com"),
alternates: {
canonical: "https://devnest.com",
},
openGraph: {
title: "DevNest - Web Development Agency",
description: "Transform your business with stunning, high-performance websites built by DevNest.",
url: "https://devnest.com",
siteName: "DevNest",
type: "website",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUjFIzvpdQlJSAeIR8xofrsh8d/a-modern-web-development-dashboard-inter-1772654927340-7827f44c.png",
alt: "DevNest Web Development",
},
],
},
twitter: {
card: "summary_large_image",
title: "DevNest - Web Development Agency",
description: "Custom websites and digital solutions for your business",
images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUjFIzvpdQlJSAeIR8xofrsh8d/a-modern-web-development-dashboard-inter-1772654927340-7827f44c.png",
],
},
robots: {
index: true,
follow: true,
},
};
title: "DevNest - Web Development Services", description: "Build your digital presence with DevNest. We create stunning, high-performance websites that transform your business."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1439,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}