5 Commits

Author SHA1 Message Date
e0615a9c5c Update src/app/page.tsx 2026-03-06 17:41:33 +00:00
5060489b8b Update src/app/page.tsx 2026-03-06 17:40:26 +00:00
6dd2ab01f0 Update src/app/layout.tsx 2026-03-06 17:40:26 +00:00
9198bba4b7 Merge version_1 into main
Merge version_1 into main
2026-03-06 17:38:31 +00:00
d372ca4040 Merge version_1 into main
Merge version_1 into main
2026-03-06 17:37:12 +00:00
2 changed files with 8 additions and 51 deletions

View File

@@ -1,62 +1,20 @@
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"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Premium Silver Jewelry & Design - Silver Crafted",
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",
},
};
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."};
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 className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1424,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -214,4 +214,4 @@ export default function HomePage() {
</footer>
</ThemeProvider>
);
}
}