11 Commits

Author SHA1 Message Date
b4e9f89f73 Update theme colors 2026-03-06 05:05:05 +00:00
9d9a773e39 Update theme colors 2026-03-06 05:04:32 +00:00
98b1d3555a Update theme colors 2026-03-06 05:03:56 +00:00
e2d3afa5c6 Update theme colors 2026-03-06 05:03:34 +00:00
cf38b0290b Update theme colors 2026-03-06 05:03:00 +00:00
56c34a3c21 Update theme colors 2026-03-06 05:02:30 +00:00
1db41f8651 Update theme colors 2026-03-06 05:02:11 +00:00
53643d829d Update theme colors 2026-03-06 05:01:46 +00:00
17922a3374 Update src/app/page.tsx 2026-03-06 04:59:59 +00:00
7a216c17df Update src/app/layout.tsx 2026-03-06 04:59:59 +00:00
97f321e4af Merge version_1 into main
Merge version_1 into main
2026-03-06 04:58:29 +00:00
3 changed files with 10 additions and 48 deletions

View File

@@ -1,57 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import { Open_Sans } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const inter = Inter({ subsets: ["latin"] });
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"],
});
export const metadata: Metadata = { 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"), 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."};
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,
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={inter.className}>{children}
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1419,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

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

View File

@@ -10,10 +10,10 @@
--accent: #ffffff; --accent: #ffffff;
--background-accent: #ffffff; */ --background-accent: #ffffff; */
--background: #ffffff; --background: #000000;
--card: #f9f9f9; --card: #f9f9f9;
--foreground: #120a00e6; --foreground: #f906ee;
--primary-cta: #E34400; --primary-cta: #f70ddc;
--primary-cta-text: #ffffff; --primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9; --secondary-cta: #f9f9f9;
--secondary-cta-text: #120a00e6; --secondary-cta-text: #120a00e6;