Merge version_2 into main #3
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -97,6 +97,12 @@ export default function HomePage() {
|
||||
tag="Our Promise"
|
||||
tagIcon={Award}
|
||||
tagAnimation="slide-up"
|
||||
avatars={[
|
||||
{ src: "http://img.b2bpic.net/free-photo/young-woman-sitting-library_273609-15843.jpg", alt: "Customer 1" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/portrait-smiling-blonde-businesswoman-formal-dressed-isolated-dark-textured-background_613910-5399.jpg", alt: "Customer 2" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/portrait-handsome-young-man-against-blur-backdrop_23-2148130407.jpg", alt: "Customer 3" }
|
||||
]}
|
||||
avatarText="10,000+ satisfied customers"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -214,4 +220,4 @@ export default function HomePage() {
|
||||
</footer>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user