From f615eb8927bbcbd526280efe60cf1f1f34564b64 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 14:59:13 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 404aa82..e83816d 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -84,7 +84,7 @@ export default function AboutPage() { Date: Fri, 13 Mar 2026 14:59:14 +0000 Subject: [PATCH 2/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 4b81cbf..c9b1a05 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -83,7 +83,7 @@ export default function ContactPage() { Date: Fri, 13 Mar 2026 14:59:14 +0000 Subject: [PATCH 3/5] Update src/app/layout.tsx --- src/app/layout.tsx | 54 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 46 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0d09ce2..cb9416a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,60 @@ 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"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Figtree } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const figtree = Figtree({ variable: "--font-figtree", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Stephan Gümüşçülük - Luxury Handcrafted Silver Jewelry", + description: "Authenticated handcrafted sterling silver jewelry. Investment-grade pieces, bespoke customization, and timeless elegance. Shop rings, necklaces, bracelets & earrings.", + keywords: "luxury jewelry, sterling silver, handcrafted, artisanal, investment jewelry, fine jewelry, authenticated, jewelry collection, silver rings, luxury necklaces", + metadataBase: new URL("https://stephangumuscülük.com"), + alternates: { + canonical: "https://stephangumuscülük.com", + }, + openGraph: { + title: "Stephan Gümüşçülük - Luxury Handcrafted Silver Jewelry", + description: "Authenticated handcrafted sterling silver jewelry. Investment-grade pieces from master artisans.", + siteName: "Stephan Gümüşçülük", + type: "website", + images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=nthkaq", + alt: "Luxury sterling silver jewelry collection", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Stephan Gümüşçülük - Luxury Handcrafted Silver Jewelry", + description: "Authenticated handcrafted sterling silver jewelry collection.", + images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=nthkaq"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +63,9 @@ export default function RootLayout({ return ( - + {children}