Merge version_2 into main #6
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #f5f5f5;
|
||||
--card: #ffffff;
|
||||
--foreground: #1c1c1c;
|
||||
--primary-cta: #341f51;
|
||||
--background: #fef8f5;
|
||||
--card: #fffaf8;
|
||||
--foreground: #4a3a36;
|
||||
--primary-cta: #d97760;
|
||||
--primary-cta-text: #f5f5f5;
|
||||
--secondary-cta: #ffffff;
|
||||
--secondary-cta-text: #1c1c1c;
|
||||
--accent: #6139e6;
|
||||
--background-accent: #b3a8e8;
|
||||
--accent: #f5d5cc;
|
||||
--background-accent: #e8b8ad;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user