Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-10 07:06:50 +00:00
2 changed files with 14 additions and 46 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1421,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -61,10 +61,10 @@ export default function LandingPage() {
<div id="about" data-section="about">
<TextAbout
tag="About Us"
title="Redefining Lash Beauty with Expert Care and Premium Quality"
title="Trusted by 500+ Clients"
useInvertedBackground={false}
buttons={[
{ text: "Discover Our Story", href: "#" }
{ text: "See Why We're Different", href: "#" }
]}
tagAnimation="slide-up"
buttonAnimation="slide-up"