Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-03-06 05:00:03 +00:00
2 changed files with 7 additions and 45 deletions

View File

@@ -1,57 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } 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 openSans = Open_Sans({
variable: "--font-open-sans", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Bilicsan Beauty - Premium Spa, Hair & Leg Cleaning Services", description: "Experience luxury spa treatments, professional hair cleaning, and specialized leg care at Bilicsan Beauty. Book your wellness appointment today.", keywords: "spa, hair cleaning, leg cleaning, beauty services, wellness, relaxation, professional salon", metadataBase: new URL("https://bilicsan-beauty.com"),
alternates: {
canonical: "https://bilicsan-beauty.com"},
openGraph: {
title: "Bilicsan Beauty - Spa & Beauty Services", description: "Premium spa, hair, and leg cleaning services for ultimate relaxation and beauty.", type: "website", siteName: "Bilicsan Beauty", url: "https://bilicsan-beauty.com", images: [
{
url: "http://img.b2bpic.net/free-photo/high-angle-view-beautiful-woman-having-head-massage-beauty-treatment-spa_637285-2192.jpg", alt: "Bilicsan Beauty Spa Services"},
],
},
twitter: {
card: "summary_large_image", title: "Bilicsan Beauty - Spa & Beauty Services", description: "Experience luxury spa treatments and professional beauty services.", images: ["http://img.b2bpic.net/free-photo/high-angle-view-beautiful-woman-having-head-massage-beauty-treatment-spa_637285-2192.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Bilicsan Beauty - Premium Spa & Wellness Services", description: "Experience ultimate relaxation and self-care with professional spa, hair, and leg cleaning services tailored to your wellness journey."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -43,7 +43,7 @@ export default function LandingPage() {
logoText="Bilicsan Beauty"
description="Discover ultimate relaxation and self-care. Professional spa, hair, and leg cleaning services tailored to your wellness journey."
buttons={[
{ text: "Book Appointment", href: "#contact" },
{ text: "Book Your Spa Day", href: "#contact" },
{ text: "Explore Services", href: "#services" },
]}
buttonAnimation="slide-up"