4 Commits

Author SHA1 Message Date
8b177f7eee Update theme fonts 2026-04-15 12:15:04 +00:00
6a6942b877 Update theme fonts 2026-04-15 12:15:04 +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
3 changed files with 16 additions and 13 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 Equipment", content: "We use state-of-the-art styling chairs, professional steamers, and sanitizing equipment." },
{ id: "g2", title: "Makeup & Styling", content: "Our collection includes high-quality brushes, palettes, and tools for every look." },
{ id: "g3", title: "Hair Tools", content: "We utilize professional blow dryers, flat irons, and curlers for perfect styling." },
]}
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/makeup-brushes-set-with-cosmetics_23-2148154865.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 Beauty Toolkit"
description="Explore the professional-grade tools and quality equipment we use to deliver exceptional beauty results."
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;
}