Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b0b6837332 | |||
| 46be4d6603 | |||
| 07da201a60 | |||
| 31959fdcd7 | |||
| 2f4a27613d | |||
| 54521600b1 | |||
| 683abeb434 | |||
| bda3e0e7b9 | |||
| bf446d26ef | |||
| 705942a165 | |||
| 54f72f90ed | |||
| 903493d09c | |||
| 109ff3b00e | |||
| e6c07b1323 |
@@ -4,7 +4,6 @@ import { Inter } from "next/font/google";
|
|||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import "@/lib/gsap-setup";
|
import "@/lib/gsap-setup";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||||
import { Public_Sans } from "next/font/google";
|
import { Public_Sans } from "next/font/google";
|
||||||
|
|
||||||
@@ -38,7 +37,7 @@ export default function RootLayout({
|
|||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${publicSans.variable} ${inter.variable} antialiased`}>
|
<body className={`${publicSans.variable} ${inter.variable} antialiased`}>
|
||||||
<Tag />
|
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
|
|||||||
@@ -14,6 +14,8 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
|||||||
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
|
const bookingUrl = "https://www.fresha.com/book-now/doc-barnet-hair-studio-tzv4uhw7/all-offer?share=true&pId=2750001";
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-shift"
|
defaultButtonVariant="text-shift"
|
||||||
@@ -40,10 +42,9 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
name: "Contact", id: "contact"},
|
name: "Contact", id: "contact"},
|
||||||
]}
|
]}
|
||||||
brandName="DOC BARNET"
|
brandName="Doc Barnet Grooming Salon"
|
||||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DMGxfgFdRWLXzYqe2HfYt6JE4x/uploaded-1778085314330-0z5ji9s5.jpg"
|
|
||||||
button={{
|
button={{
|
||||||
text: "BOOK NOW", href: "#contact"}}
|
text: "BOOK NOW", href: bookingUrl}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -73,7 +74,7 @@ export default function LandingPage() {
|
|||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "BOOK NOW", href: "#contact"},
|
text: "BOOK NOW", href: bookingUrl},
|
||||||
{
|
{
|
||||||
text: "VIEW PRICES", href: "#pricing"},
|
text: "VIEW PRICES", href: "#pricing"},
|
||||||
]}
|
]}
|
||||||
@@ -148,17 +149,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
plans={[
|
plans={[
|
||||||
{
|
{
|
||||||
id: "p1", badge: "Most Popular", price: "£35", subtitle: "Premium Haircut & Styling", buttons: [
|
id: "p1", badge: "Most Popular", price: "£19.99", subtitle: "Premium Haircut & Styling", buttons: [
|
||||||
{
|
{
|
||||||
text: "Book Now", href: "#contact"},
|
text: "Book Now", href: bookingUrl},
|
||||||
],
|
],
|
||||||
features: [
|
features: [
|
||||||
"Consultation", "Precision Cut", "Style Advice", "Finish"],
|
"Consultation", "Precision Cut", "Style Advice", "Finish"],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "p2", badge: "Essential", price: "£55", subtitle: "Cut, Wash & Blow Dry", buttons: [
|
id: "p2", badge: "Essential", price: "£45", subtitle: "Cut, Wash & Blow Dry", buttons: [
|
||||||
{
|
{
|
||||||
text: "Book Now", href: "#contact"},
|
text: "Book Now", href: bookingUrl},
|
||||||
],
|
],
|
||||||
features: [
|
features: [
|
||||||
"Head Massage", "Professional Cut", "Styling"],
|
"Head Massage", "Professional Cut", "Styling"],
|
||||||
@@ -166,7 +167,7 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
id: "p3", badge: "Luxury", price: "£85", subtitle: "Balayage & Treatment", buttons: [
|
id: "p3", badge: "Luxury", price: "£85", subtitle: "Balayage & Treatment", buttons: [
|
||||||
{
|
{
|
||||||
text: "Book Now", href: "#contact"},
|
text: "Book Now", href: bookingUrl},
|
||||||
],
|
],
|
||||||
features: [
|
features: [
|
||||||
"Consultation", "Expert Colour", "Treatment", "Finish"],
|
"Consultation", "Expert Colour", "Treatment", "Finish"],
|
||||||
@@ -276,7 +277,7 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterMedia
|
<FooterMedia
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/minimalist-background_23-2151967093.jpg"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DMGxfgFdRWLXzYqe2HfYt6JE4x/uploaded-1778093237434-05qgab2c.jpg"
|
||||||
logoText="DOC BARNET"
|
logoText="DOC BARNET"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
@@ -296,7 +297,7 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
label: "Contact", href: "#contact"},
|
label: "Contact", href: "#contact"},
|
||||||
{
|
{
|
||||||
label: "Book Now", href: "#contact"},
|
label: "Book Now", href: bookingUrl},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user