Update src/app/layout.tsx

This commit is contained in:
2026-03-03 22:04:53 +00:00
parent 0d9df81c93
commit 9064cbba4d

View File

@@ -1,49 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Lora } 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 lora = Lora({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Professional Website Creation Services | Webild", description: "Custom websites built fast and affordably for small businesses and startups. Expert design, conversion optimization, and 4-week launch guarantee. Get your free quote today.", keywords: "website design, web development, small business websites, startup web design, affordable websites, fast website creation, conversion optimization", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Professional Website Creation Services | Webild", description: "We create custom, high-converting websites that help small businesses establish credibility and attract customers—without the enterprise price tag.", siteName: "Webild", type: "website", images: [
{
url: "http://img.b2bpic.net/free-vector/professional-dashboard-user-panel_23-2148310538.jpg", alt: "Professional website dashboard and design showcase"},
],
},
twitter: {
card: "summary_large_image", title: "Professional Website Creation Services | Webild", description: "Custom websites built fast and affordably for small businesses and startups.", images: ["http://img.b2bpic.net/free-vector/professional-dashboard-user-panel_23-2148310538.jpg"],
},
};
title: "Webild - Professional Websites Built Fast, Priced Right", description: "Custom, high-converting websites for small businesses and startups. Fast, affordable web design and development."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={lora.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}