6 Commits

Author SHA1 Message Date
afcdd6f5b8 Update theme fonts 2026-05-14 14:00:28 +00:00
78d7ef3f08 Update theme fonts 2026-05-14 14:00:27 +00:00
28a700d7b0 Update src/app/page.tsx 2026-05-13 14:52:33 +00:00
8d4f89ed4c Merge version_3 into main
Merge version_3 into main
2026-05-13 14:50:38 +00:00
4f66fbcfc1 Update src/app/page.tsx 2026-05-13 14:50:35 +00:00
fd8ec8817b Merge version_2 into main
Merge version_2 into main
2026-05-13 12:02:55 +00:00
3 changed files with 23 additions and 8 deletions

View File

@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Raleway } from "next/font/google";
import { Libre_Baskerville } from "next/font/google";
@@ -15,8 +16,14 @@ export const metadata: Metadata = {
description: "Generated by create next app",
};
const raleway = Raleway({
variable: "--font-raleway",
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
@@ -28,7 +35,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${raleway.variable} antialiased`}>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -10,7 +10,7 @@ import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import TextAbout from '@/components/sections/about/TextAbout';
import { Sparkles } from "lucide-react";
import { Sparkles, MessageCircle } from "lucide-react";
export default function LandingPage() {
return (
@@ -44,7 +44,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroBillboardScroll
background={{ variant: "radial-gradient" }}
background={{ variant: "sparkles-gradient" }}
title="The Finest Haircut You Will Ever Get In London"
description="Londons Only 5-Star Barbershop — 619 Google Reviews"
buttons={[{ text: "BOOK NOW", href: "#contact" }]}
@@ -151,7 +151,15 @@ export default function LandingPage() {
bottomRightText="Luxury Barbershop London"
/>
</div>
<a
href="https://wa.me/447828469044"
className="fixed bottom-6 right-6 z-50 p-4 bg-green-500 rounded-full shadow-lg text-white hover:bg-green-600 transition-colors"
aria-label="Contact us on WhatsApp"
>
<MessageCircle size={28} />
</a>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-raleway), 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-raleway), sans-serif;
font-family: var(--font-libre-baskerville), serif;
}