Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ba918dcaf1 | |||
| 84f9caa4d0 | |||
| 6e22204703 | |||
| 330bf53e8a | |||
| 395bfca8d2 | |||
| 33ca01d4d8 | |||
| d822186527 | |||
| 71327aa811 |
@@ -1,56 +1,18 @@
|
|||||||
import type { Metadata } from "next";
|
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 "./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 = {
|
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"),
|
title: "Blooming Nice | Women's Boutique in Langebaan", description: "Stylish women's clothing, beautiful gifts, handmade soaps, and thoughtful finds in Langebaan, South Africa."};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body>
|
||||||
<body
|
{children}
|
||||||
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
@@ -1419,7 +1381,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #f5f5f5;
|
--background: #fef8f5;
|
||||||
--card: #ffffff;
|
--card: #fffaf8;
|
||||||
--foreground: #1c1c1c;
|
--foreground: #4a3a36;
|
||||||
--primary-cta: #341f51;
|
--primary-cta: #d97760;
|
||||||
--primary-cta-text: #f5f5f5;
|
--primary-cta-text: #f5f5f5;
|
||||||
--secondary-cta: #ffffff;
|
--secondary-cta: #ffffff;
|
||||||
--secondary-cta-text: #1c1c1c;
|
--secondary-cta-text: #1c1c1c;
|
||||||
--accent: #6139e6;
|
--accent: #f5d5cc;
|
||||||
--background-accent: #b3a8e8;
|
--background-accent: #e8b8ad;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user