Files
c46e7d30-064d-4fa3-85a6-bdd…/src/app/layout.tsx
2026-03-21 17:39:12 +00:00

42 lines
1.2 KiB
TypeScript

import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } 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 { Raleway } from "next/font/google";
export const metadata: Metadata = {
title: 'Cheer & Chocolate | Artisanal Handcrafted Chocolates in Lisbon',
description: 'Discover premium handcrafted chocolates made with art and soul. Authentic artisanal chocolate boutique in Lisbon. Perfect gifts for chocolate enthusiasts.',
};
const raleway = Raleway({
variable: "--font-raleway", subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${raleway.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}