71 lines
2.2 KiB
TypeScript
71 lines
2.2 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Halant } from "next/font/google";
|
|
import { Inter } from "next/font/google";
|
|
import "./globals.css";
|
|
import "@/lib/gsap-setup";
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
import Tag from "@/tag/Tag";
|
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
|
import { Lato } from "next/font/google";
|
|
import { Montserrat } from "next/font/google";
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'COBIS ART | Nature-Inspired Luxury Fine Art Gallery',
|
|
description: 'Discover original paintings, fine art prints, and handcrafted pieces rooted in natural inspiration. Authentic, sustainable, and created to last.',
|
|
openGraph: {
|
|
"title": "COBIS ART | Nature-Inspired Luxury Fine Art Gallery",
|
|
"description": "Discover original paintings, fine art prints, and handcrafted pieces rooted in natural inspiration. Authentic, sustainable, and created to last.",
|
|
"url": "https://www.cobisart.com",
|
|
"siteName": "COBIS ART",
|
|
"images": [
|
|
{
|
|
"url": "http://img.b2bpic.net/free-photo/woman-checking-natural-pigmented-cloths_23-2148734282.jpg",
|
|
"alt": "Beautiful nature-inspired artwork in a gallery setting"
|
|
}
|
|
],
|
|
"type": "website"
|
|
},
|
|
twitter: {
|
|
"card": "summary_large_image",
|
|
"title": "COBIS ART | Nature-Inspired Luxury Fine Art Gallery",
|
|
"description": "Discover original paintings, fine art prints, and handcrafted pieces rooted in natural inspiration. Authentic, sustainable, and created to last.",
|
|
"images": [
|
|
"http://img.b2bpic.net/free-photo/woman-checking-natural-pigmented-cloths_23-2148734282.jpg"
|
|
]
|
|
},
|
|
robots: {
|
|
"index": true,
|
|
"follow": true
|
|
},
|
|
};
|
|
|
|
|
|
const montserrat = Montserrat({
|
|
variable: "--font-montserrat",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body className={`${montserrat.variable} antialiased`}>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
}
|