Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e28f13fb63 | |||
| e3a6058ca8 |
@@ -1,55 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Lato } from "next/font/google";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import "@/styles/globals.css";
|
||||
|
||||
const lato = Lato({
|
||||
variable: "--font-lato", subsets: ["latin"],
|
||||
weight: ["100", "300", "400", "700", "900"],
|
||||
});
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Saint Luciel | Luxury Jewelry & Streetwear", description: "Discover Saint Luciel's curated collection of luxury jewelry and elevated streetwear. Ethically sourced, handcrafted pieces that celebrate elegance and individuality.", keywords: "luxury jewelry, designer streetwear, artisan jewelry, ethical fashion, luxury accessories", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Saint Luciel | Luxury Jewelry & Streetwear", description: "Discover Saint Luciel's curated collection of luxury jewelry and elevated streetwear. Ethically sourced, handcrafted pieces that celebrate elegance and individuality.", url: "https://saintluciel.com", siteName: "Saint Luciel", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/close-up-portrait-elegant-woman-blonde-woman-with-curly-beautiful-hair-beautiful-blonde-long-curly-hair-woman-with-beauty-makeup-healthy-skin-accessories_343629-56.jpg", alt: "Saint Luciel luxury jewelry and streetwear"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Saint Luciel | Luxury Jewelry & Streetwear", description: "Discover Saint Luciel's curated collection of luxury jewelry and elevated streetwear.", images: ["http://img.b2bpic.net/free-photo/close-up-portrait-elegant-woman-blonde-woman-with-curly-beautiful-hair-beautiful-blonde-long-curly-hair-woman-with-beauty-makeup-healthy-skin-accessories_343629-56.jpg"],
|
||||
},
|
||||
};
|
||||
title: "Saint Luciel - Luxury Jewelry & Elevated Streetwear", description: "Discover luxury jewelry and elevated streetwear celebrating the bright side of fashion. Radiant pieces that elevate your everyday."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${lato.variable} ${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1417,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user