Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 112622ec60 | |||
| c6d52a48b0 | |||
| 51ec9e6adb | |||
| ec03426c08 | |||
| 39b459b661 | |||
| 79370948aa | |||
| 8b177f7eee | |||
| 6a6942b877 | |||
| 27a86a27c6 | |||
| 587c4a90dc | |||
| 0debce517d |
@@ -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
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user