Update src/app/layout.tsx

This commit is contained in:
2026-03-10 15:40:56 +00:00
parent b9f9aecf93
commit bc5e5ca289

View File

@@ -1,24 +1,63 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } 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 { Manrope } 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 manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "TechHub BD - Build Your Dream PC & Gaming Laptop in Bangladesh",
description: "Buy gaming laptops, gaming PCs, and components in Bangladesh. AI product finder, PC builder tool, and community of tech enthusiasts. Fast delivery in Dhaka.",
keywords: "gaming laptop Bangladesh, gaming PC builder, RTX 4060, ASUS laptops, PC components Dhaka, tech store Bangladesh",
metadataBase: new URL("https://techhub.bd"),
alternates: {
canonical: "https://techhub.bd",
},
openGraph: {
title: "TechHub BD - Build Your Dream Setup",
description: "Discover premium gaming laptops and PCs with AI recommendations. Join thousands of Bangladeshi tech builders.",
url: "https://techhub.bd",
siteName: "TechHub BD",
type: "website",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkSsFT5Dmc4F4u7UZOZ1nILZG3/a-modern-clean-tech-store-dashboard-inte-1773157167765-0b769c2a.png",
alt: "TechHub BD - Modern Tech Store Dashboard",
},
],
},
twitter: {
card: "summary_large_image",
title: "TechHub BD - Gaming PC & Laptop Store",
description: "Build your dream gaming setup. AI recommendations, PC builder tool, and community.",
images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkSsFT5Dmc4F4u7UZOZ1nILZG3/a-modern-clean-tech-store-dashboard-inte-1773157167765-0b769c2a.png",
],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +66,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +80,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}