70 lines
2.3 KiB
TypeScript
70 lines
2.3 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 { Roboto } from "next/font/google";
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Helidonis Fabrics - Unique Collections for Every Space',
|
|
description: 'Discover high-quality fabrics for professional spaces, hotels, and catering establishments. Explore our unique collections of curtains, upholstery, and more.',
|
|
openGraph: {
|
|
"title": "Helidonis Fabrics - Unique Collections for Every Space",
|
|
"description": "Discover high-quality fabrics for professional spaces, hotels, and catering establishments. Explore our unique collections of curtains, upholstery, and more.",
|
|
"url": "https://helidonis-fabrics.gr",
|
|
"siteName": "Helidonis Fabrics",
|
|
"images": [
|
|
{
|
|
"url": "http://img.b2bpic.net/free-photo/home-plant-vase-decoration-assortment_23-2149090614.jpg",
|
|
"alt": "Luxury Curtain Fabrics"
|
|
}
|
|
],
|
|
"type": "website"
|
|
},
|
|
twitter: {
|
|
"card": "summary_large_image",
|
|
"title": "Helidonis Fabrics - Unique Collections for Every Space",
|
|
"description": "Discover high-quality fabrics for professional spaces, hotels, and catering establishments. Explore our unique collections of curtains, upholstery, and more.",
|
|
"images": [
|
|
"http://img.b2bpic.net/free-photo/home-plant-vase-decoration-assortment_23-2149090614.jpg"
|
|
]
|
|
},
|
|
robots: {
|
|
"index": true,
|
|
"follow": true
|
|
},
|
|
};
|
|
|
|
const roboto = Roboto({
|
|
variable: "--font-roboto",
|
|
subsets: ["latin"],
|
|
weight: ["100", "300", "400", "500", "700", "900"],
|
|
});
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body className={`${roboto.variable} antialiased`}>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
}
|