70 lines
2.4 KiB
TypeScript
70 lines
2.4 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 { Archivo } from "next/font/google";
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Ultimate Supply Agency | Your Trusted Partner in Logistics',
|
|
description: 'Ultimate Supply Agency provides comprehensive logistics and supply chain solutions. From procurement to distribution, we streamline your operations.',
|
|
keywords: ["arts and crafts Malacca, workshop Malacca, batik painting, pottery workshop, jewelry making, creative workshops, heritage activities, Weekend Workshop, Malacca art classes"],
|
|
openGraph: {
|
|
"title": "The Weekend Workshop Malacca | Arts & Crafts",
|
|
"description": "Discover unique arts, crafts, and workshops in Malacca's heritage heart. Batik, pottery, jewelry, and more for all skill levels. Unleash your creativity!",
|
|
"url": "https://www.theweekendworkshopmalacca.com",
|
|
"siteName": "The Weekend Workshop",
|
|
"images": [
|
|
{
|
|
"url": "http://img.b2bpic.net/free-photo/man-owner-counter-packing-clothes-yellow-plastic-bag_23-2148175679.jpg",
|
|
"alt": "People painting batik in a workshop"
|
|
}
|
|
],
|
|
"type": "website"
|
|
},
|
|
twitter: {
|
|
"card": "summary_large_image",
|
|
"title": "The Weekend Workshop Malacca | Arts & Crafts",
|
|
"description": "Discover unique arts, crafts, and workshops in Malacca's heritage heart. Batik, pottery, jewelry, and more for all skill levels. Unleash your creativity!",
|
|
"images": [
|
|
"http://img.b2bpic.net/free-photo/man-owner-counter-packing-clothes-yellow-plastic-bag_23-2148175679.jpg"
|
|
]
|
|
},
|
|
robots: {
|
|
"index": true,
|
|
"follow": true
|
|
},
|
|
};
|
|
|
|
const archivo = Archivo({
|
|
variable: "--font-archivo",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body className={`${archivo.variable} antialiased`}>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
}
|