diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 6b3ab30..2c7d789 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,59 +1,35 @@
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"],
-});
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 (
-
-