From 204848128216f09478639e125e361422d4dc41ea Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 15:01:34 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 62 ++++++++++++++++------------------------------ 1 file changed, 21 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6b3ab30..a00e026 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,40 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Poppins } 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"], -}); +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/tag/Tag"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); - export const metadata: Metadata = { - title: "Premium Nail & Eyebrow Salon | BRC Beauty", description: "Expert nail art and eyebrow design services. Premium manicures, gel polish, microblading, and more. Book your luxury beauty appointment today.", keywords: "nail salon, eyebrow design, manicure, gel polish, microblading, beauty services, luxury nails", metadataBase: new URL("https://brcbeauty.com"), - alternates: { - canonical: "https://brcbeauty.com"}, - openGraph: { - title: "Premium Nail & Eyebrow Salon | BRC Beauty", description: "Experience luxury beauty services with our expert nail technicians and eyebrow specialists.", url: "https://brcbeauty.com", siteName: "BRC Beauty", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AiGDVlXuq5uQB8YYYXzNmDNeib/uploaded-1773067977781-a5182lxw.png", alt: "Premium nail art and eyebrow design"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Premium Nail & Eyebrow Salon | BRC Beauty", description: "Expert nail art and eyebrow design services.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AiGDVlXuq5uQB8YYYXzNmDNeib/uploaded-1773067977781-a5182lxw.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "BRC Güzellik - Tırnak ve Kaş Tasarımı", description: "Profesyonel tırnak sanatı ve kaş tasarımı hizmetleri. Premium güzellik hizmetleriyle kendinizi şımartın."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - + + + {children} - + +