81 lines
2.7 KiB
TypeScript
81 lines
2.7 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Halant } from "next/font/google";
|
|
import { Inter } from "next/font/google";
|
|
import { Source_Sans_3 } from "next/font/google";
|
|
import "./globals.css";
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
import Tag from "@/tag/Tag";
|
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
|
|
|
const halant = Halant({
|
|
variable: "--font-halant",
|
|
subsets: ["latin"],
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
});
|
|
|
|
const inter = Inter({
|
|
variable: "--font-inter",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
const sourceSans3 = Source_Sans_3({
|
|
variable: "--font-source-sans-3",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Grosir Madu Maulana | Madu Murni Asli Salatiga",
|
|
description: "Grosir madu murni asli di Salatiga. Tersedia madu grosir dan eceran berkualitas tinggi. Hubungi WhatsApp 0881-2268-888 untuk pemesanan cepat.",
|
|
keywords: "madu murni Salatiga, grosir madu Salatiga, jual madu asli Salatiga, supplier madu Jawa Tengah, madu herbal Salatiga, madu berkualitas, madu grosir murah",
|
|
metadataBase: new URL("https://grosirmadumaulana.local"),
|
|
alternates: {
|
|
canonical: "https://grosirmadumaulana.local",
|
|
},
|
|
openGraph: {
|
|
title: "Grosir Madu Maulana | Madu Murni Asli Salatiga",
|
|
description: "Pemasok madu murni berkualitas tinggi dengan harga grosir. Tersedia untuk konsumsi pribadi, herbal, dan bisnis reseller. Pesan via WhatsApp sekarang.",
|
|
url: "https://grosirmadumaulana.local",
|
|
siteName: "Grosir Madu Maulana",
|
|
type: "website",
|
|
images: [
|
|
{
|
|
url: "http://img.b2bpic.net/free-photo/closeup-beautiful-jar-with-honey-with-wooden-cap-laced-as-gift-white-craft-paper-morning-light-breakfast_346278-647.jpg",
|
|
alt: "Madu Murni Asli Grosir Madu Maulana",
|
|
},
|
|
],
|
|
},
|
|
twitter: {
|
|
card: "summary_large_image",
|
|
title: "Grosir Madu Maulana | Madu Murni Asli",
|
|
description: "Madu berkualitas tinggi dengan harga grosir. Hubungi WhatsApp 0881-2268-888",
|
|
images: ["http://img.b2bpic.net/free-photo/closeup-beautiful-jar-with-honey-with-wooden-cap-laced-as-gift-white-craft-paper-morning-light-breakfast_346278-647.jpg"],
|
|
},
|
|
robots: {
|
|
index: true,
|
|
follow: true,
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body
|
|
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
|
|
>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
} |