4 Commits

Author SHA1 Message Date
fd7d6eaa4a Update theme fonts 2026-04-26 00:29:55 +00:00
8b48edb5f8 Update theme fonts 2026-04-26 00:29:54 +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 { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script"; 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({ const inter = Inter({
variable: "--font-inter", variable: "--font-inter",
subsets: ["latin"], subsets: ["latin"],
}); });
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
export default function RootLayout({ export default function RootLayout({
children, children,
@@ -33,7 +39,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${inter.variable} antialiased`}> <body className={`${inter.variable} ${openSans.variable} antialiased`}>
<Tag /> <Tag />
{children} {children}
<script <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." description="Affordable Luxury Microblading & Nanoblading. Experience hyper-realistic results tailored to your natural facial features."
buttons={[ 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" imageSrc="http://img.b2bpic.net/free-photo/beautician-doing-eyebrow-treatment-her-female-client_23-2148910502.jpg"
imageAlt="Luxurious Beauty Aesthetic Clinic Interior" 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: "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" title="Common Questions"
description="Learn more about our nanoblading techniques." description="Learn more about our nanoblading techniques."

View File

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