Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9bc1908a56 | |||
| fd7d6eaa4a | |||
| 8b48edb5f8 | |||
| 521cfc4987 | |||
| 7ca54a7d60 | |||
| ee5cee6dfe |
@@ -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
|
||||
|
||||
@@ -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."
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user