Update src/app/layout.tsx

This commit is contained in:
2026-03-16 14:32:23 +00:00
parent 330a2e3497
commit d02c8dfdcf

View File

@@ -1,18 +1,22 @@
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";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Poppins } 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 poppins = Poppins({
variable: "--font-poppins",
@@ -20,6 +24,32 @@ const poppins = Poppins({
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
title: "Nowhere Gallery - Premium Custom Sofas & Luxury Seating",
description: "Discover bespoke sofas crafted in our private factory. Premium fabrics, custom designs, and exceptional quality for your home or office.",
keywords: "custom sofas, luxury furniture, premium seating, bespoke sofa design, handcrafted furniture",
openGraph: {
title: "Nowhere Gallery - Premium Custom Sofas",
description: "Discover bespoke sofas crafted with precision and style. Custom design your perfect sofa today.",
siteName: "Nowhere Gallery",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/modern-interior-design-living-room-with-soft-sofa-background-wooden-wall-minim_1258-134117.jpg",
alt: "Luxury modern sofa by Nowhere Gallery",
},
],
},
twitter: {
card: "summary_large_image",
title: "Nowhere Gallery - Premium Custom Sofas",
description: "Bespoke sofas designed for your space. Premium quality, handcrafted excellence.",
images: [
"http://img.b2bpic.net/free-photo/modern-interior-design-living-room-with-soft-sofa-background-wooden-wall-minim_1258-134117.jpg",
],
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -28,7 +58,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${poppins.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -40,4 +72,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}