11 Commits

Author SHA1 Message Date
112622ec60 Update src/app/page.tsx 2026-04-15 12:20:25 +00:00
c6d52a48b0 Merge version_5 into main
Merge version_5 into main
2026-04-15 12:15:47 +00:00
51ec9e6adb Update theme colors 2026-04-15 12:15:44 +00:00
ec03426c08 Merge version_4 into main
Merge version_4 into main
2026-04-15 12:15:37 +00:00
39b459b661 Update theme colors 2026-04-15 12:15:31 +00:00
79370948aa Merge version_3 into main
Merge version_3 into main
2026-04-15 12:15:10 +00:00
8b177f7eee Update theme fonts 2026-04-15 12:15:04 +00:00
6a6942b877 Update theme fonts 2026-04-15 12:15:04 +00:00
27a86a27c6 Merge version_3 into main
Merge version_3 into main
2026-04-15 12:13:48 +00:00
587c4a90dc Update src/app/page.tsx 2026-04-15 12:13:45 +00:00
0debce517d Merge version_2 into main
Merge version_2 into main
2026-04-15 12:10:41 +00:00
4 changed files with 18 additions and 15 deletions

View File

@@ -8,6 +8,7 @@ import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Libre_Baskerville } from "next/font/google";
@@ -21,12 +22,14 @@ export const metadata: Metadata = {
},
};
const manrope = Manrope({
variable: "--font-manrope",
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
@@ -38,7 +41,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -91,14 +91,14 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
faqs={[
{ id: "g1", title: "Hair Styles", content: "Explore our portfolio of precision cuts, blow-dries, and color transformations." },
{ id: "g2", title: "Nail Art", content: "Check out our latest manicures, pedicures, and creative nail designs." },
{ id: "g3", title: "Skincare Results", content: "See the glow our facials bring to our clients." },
{ id: "g1", title: "Salon Standards", content: "We pride ourselves on maintaining the highest cleanliness and hygiene standards in all our service areas." },
{ id: "g2", title: "Expert Staff", content: "Our team is professionally trained to provide you with a relaxing and high-quality beauty experience." },
{ id: "g3", title: "Premium Products", content: "We curate our beauty products to ensure safe, effective results for every treatment we perform." },
]}
imageSrc="http://img.b2bpic.net/free-photo/brunette-model-red-suit-with-evening-makeup-gray_158538-10870.jpg"
imageSrc="http://img.b2bpic.net/free-photo/beautiful-salon-interior-design_23-2148736366.jpg"
mediaAnimation="slide-up"
title="Our Work Highlights"
description="A glimpse of our work—real results, happy clients, and styles we love creating every day."
title="Our Salon Experience"
description="We focus on delivering a peaceful, professional environment dedicated to your beauty and relaxation."
faqsAnimation="slide-up"
/>
</div>

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-dm-sans), sans-serif;
font-family: var(--font-inter), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-manrope), sans-serif;
font-family: var(--font-libre-baskerville), serif;
}

View File

@@ -11,9 +11,9 @@
--background-accent: #ffffff; */
--background: #ffffff;
--card: #f9f9f9;
--card: #000000;
--foreground: #000f06e6;
--primary-cta: #0a7039;
--primary-cta: #000000;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000f06e6;