6 Commits

Author SHA1 Message Date
9bc1908a56 Merge version_3 into main
Merge version_3 into main
2026-04-26 00:29:58 +00:00
fd7d6eaa4a Update theme fonts 2026-04-26 00:29:55 +00:00
8b48edb5f8 Update theme fonts 2026-04-26 00:29:54 +00:00
521cfc4987 Merge version_3 into main
Merge version_3 into main
2026-04-26 00:28:29 +00:00
7ca54a7d60 Update src/app/page.tsx 2026-04-26 00:28:23 +00:00
ee5cee6dfe Merge version_2 into main
Merge version_2 into main
2026-04-26 00:27:30 +00:00
3 changed files with 10 additions and 5 deletions

View File

@@ -6,6 +6,7 @@ import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Open_Sans } from "next/font/google";
@@ -20,10 +21,15 @@ export const metadata: Metadata = {
},
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
export default function RootLayout({
children,
@@ -33,7 +39,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${inter.variable} antialiased`}>
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -52,7 +52,7 @@ export default function LandingPage() {
description="Affordable Luxury Microblading & Nanoblading. Experience hyper-realistic results tailored to your natural facial features."
buttons={[
{
text: "Book Now", href: "#contact"},
text: "Start Your Transformation", href: "#contact"},
]}
imageSrc="http://img.b2bpic.net/free-photo/beautician-doing-eyebrow-treatment-her-female-client_23-2148910502.jpg"
imageAlt="Luxurious Beauty Aesthetic Clinic Interior"
@@ -168,8 +168,7 @@ export default function LandingPage() {
{
id: "f4", title: "Why choose this over microblading?", content: "Nanoblading uses finer needles, leading to less skin trauma and a more refined, delicate appearance."},
{
id: "f5", title: "Do you offer satisfaction guarantees?", content: "We are committed to your complete satisfaction; if you are not fully happy with your initial look, we provide a complimentary touch-up consultation within 4 weeks."
}
id: "f5", title: "Do you offer satisfaction guarantees?", content: "We are committed to your complete satisfaction; if you are not fully happy with your initial look, we provide a complimentary touch-up consultation within 4 weeks."}
]}
title="Common Questions"
description="Learn more about our nanoblading techniques."

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-inter), sans-serif;
font-family: var(--font-open-sans), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;