diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index cb2e880..1b49b0e 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,59 +1,28 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { Montserrat } from "next/font/google";
+import { Geist, Geist_Mono } 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 geist = Geist({
+ variable: "--font-geist-sans", subsets: ["latin"],
});
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const montserrat = Montserrat({
- variable: "--font-montserrat", subsets: ["latin"],
+const geistMono = Geist_Mono({
+ variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "Brown Lash Bar | Premium Lash Extensions & Beauty Services", description: "Expert lash extensions, lifts, and tints in a luxury beauty salon. Book your appointment today for stunning, natural-looking lashes.", keywords: "lash extensions, lash lift, lash tint, beauty salon, eyelash services, premium lashes", metadataBase: new URL("https://brownlashbar.com"),
- alternates: {
- canonical: "https://brownlashbar.com"
- },
- openGraph: {
- title: "Brown Lash Bar | Luxury Lash Services", description: "Discover premium lash extensions and beauty treatments at Brown Lash Bar. Expert care, stunning results.", type: "website", siteName: "Brown Lash Bar", images: [
- {
- url: "http://img.b2bpic.net/free-photo/side-view-hand-holding-tweezers_23-2149628032.jpg", alt: "Premium lash extensions at Brown Lash Bar"
- }
- ]
- },
- twitter: {
- card: "summary_large_image", title: "Brown Lash Bar | Premium Lash Extensions", description: "Luxury lash services and expert beauty treatments. Book your transformation today.", images: ["http://img.b2bpic.net/free-photo/side-view-hand-holding-tweezers_23-2149628032.jpg"]
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "Brown Lash Bar - Premium Lash Extensions & Services", description: "Experience luxury lash services at Brown Lash Bar. Premium extensions, lifts, and tints delivered with expert precision and elegance."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-