|
|
|
|
@@ -1,57 +1,19 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Halant } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import { Figtree } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
|
|
|
|
|
const halant = Halant({
|
|
|
|
|
variable: "--font-halant", subsets: ["latin"],
|
|
|
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const figtree = Figtree({
|
|
|
|
|
variable: "--font-figtree", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Blooming Nice | Boutique Clothing & Gifts in Langebaan", description: "Your favourite boutique in Langebaan. Shop women's fashion, handbags, sandals, homeware, gifts & handmade soaps. Call now or visit today. 4.3★ rated.", keywords: "clothing store Langebaan, boutique Langebaan, women's fashion Langebaan, gift shop Langebaan, handbags Langebaan, homeware Langebaan, sandals sneakers Langebaan", metadataBase: new URL("https://blooming-nice.com"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://blooming-nice.com"},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Blooming Nice | Boutique Clothing & Gifts in Langebaan", description: "Discover stylish clothing, beautiful gifts, and unique finds at Blooming Nice in Langebaan. Trusted by locals and holiday visitors.", url: "https://blooming-nice.com", siteName: "Blooming Nice", type: "website", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "http://img.b2bpic.net/free-photo/elegant-women-with-shopping-bags-city_1157-26763.jpg", alt: "Blooming Nice boutique storefront"},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "Blooming Nice | Boutique Clothing & Gifts in Langebaan", description: "Your favourite boutique in Langebaan. Stylish clothing, beautiful gifts & handmade items.", images: ["http://img.b2bpic.net/free-photo/elegant-women-with-shopping-bags-city_1157-26763.jpg"],
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
title: "Blooming Nice | Women's Boutique in Langebaan", description: "Stylish women's clothing, beautiful gifts, handmade soaps, and thoughtful finds in Langebaan, South Africa."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body>
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1419,7 +1381,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|