diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7c1b25a..a3d0f02 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,20 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Belle Precisions | Permanent Eyeliner Hot Springs, AR", description: "5-star permanent makeup clinic in Hot Springs, AR. Expert permanent eyeliner enhancement by women-owned business. Consultations available. Call (501) 359-2175 or book online.", keywords: "permanent eyeliner Hot Springs, permanent makeup Arkansas, cosmetic enhancement, beauty clinic, women-owned business", metadataBase: new URL("https://belleprecisions.com"), - alternates: { - canonical: "https://belleprecisions.com"}, - openGraph: { - title: "Belle Precisions - Permanent Eyeliner in Hot Springs, AR", description: "Professional permanent makeup clinic specializing in precision eyeliner enhancement. 5-star rated, women-owned. Book your consultation today.", url: "https://belleprecisions.com", siteName: "Belle Precisions", images: [ - { - url: "http://img.b2bpic.net/free-photo/high-angle-bride-getting-ready-wedding_23-2149860801.jpg", alt: "Belle Precisions permanent eyeliner service"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "Belle Precisions - Permanent Eyeliner", description: "Professional permanent makeup in Hot Springs, AR. 5-star rated, women-owned clinic.", images: ["http://img.b2bpic.net/free-photo/high-angle-bride-getting-ready-wedding_23-2149860801.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Belle Precisions - Permanent Makeup Hot Springs", description: "Professional permanent eyeliner enhancement in Hot Springs, AR. 5-star rated, women-owned clinic specializing in precision beauty services."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}