Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e0615a9c5c | |||
| 5060489b8b | |||
| 6dd2ab01f0 | |||
| 9198bba4b7 | |||
| d372ca4040 |
@@ -1,62 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } 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({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
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: "Premium Silver Jewelry & Design - Silver Crafted",
|
title: "Silver Crafted - Premium Silver Jewelry", description: "Discover our exquisite collection of premium silver jewelry and designs. Each piece is meticulously crafted with precision and artistry."};
|
||||||
description: "Discover luxury silver jewelry and designs crafted with precision by master artisans. Explore our exquisite collection of contemporary and timeless silver pieces.",
|
|
||||||
keywords: "silver jewelry, luxury jewelry, handcrafted silver, artisan jewelry, premium designs, silver necklaces, silver bracelets, silver rings",
|
|
||||||
metadataBase: new URL("https://silvercrafted.com"),
|
|
||||||
alternates: {
|
|
||||||
canonical: "https://silvercrafted.com",
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Premium Silver Jewelry & Design - Silver Crafted",
|
|
||||||
description: "Discover luxury silver jewelry and designs crafted with precision by master artisans.",
|
|
||||||
siteName: "Silver Crafted",
|
|
||||||
type: "website",
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "Premium Silver Jewelry - Silver Crafted",
|
|
||||||
description: "Luxury handcrafted silver jewelry and designs by master artisans",
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
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 className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1424,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user