Merge version_3 into main #5
@@ -1,17 +1,17 @@
|
||||
import type { Metadata } from 'next';
|
||||
import { Poppins } from 'next/font/google';
|
||||
import './globals.css';
|
||||
import type { Metadata } from "next";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
|
||||
const poppins = Poppins({
|
||||
subsets: ['latin'],
|
||||
weight: ['400', '500', '600', '700', '800'],
|
||||
variable: '--font-poppins',
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'BARBERSHOP ΘΩΜΑΣ | Premium Men\'s Grooming in Patras',
|
||||
description: 'Premium Men\'s Grooming in Patras. Traditional barbering with modern style. Precision haircuts, beard grooming, and professional service.',
|
||||
};
|
||||
title: "BARBERSHOP ΘΩΜΑΣ - Premium Men's Grooming in Patras", description: "Professional barbershop in Patras offering precision haircuts, beard grooming, and premium styling services. Traditional barbering with modern style."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
@@ -20,7 +20,7 @@ export default function RootLayout({
|
||||
}) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={poppins.variable}>
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
|
||||
@@ -57,8 +57,8 @@ export default function LandingPage() {
|
||||
containerClassName="w-full"
|
||||
logoClassName="text-5xl md:text-7xl font-bold tracking-tight"
|
||||
descriptionClassName="text-lg md:text-2xl font-light"
|
||||
buttonContainerClassName="flex gap-4 justify-center md:justify-end"
|
||||
buttonClassName="px-8 py-3 rounded-full"
|
||||
buttonContainerClassName="flex gap-4 justify-center md:justify-end -mt-2 md:-mt-4"
|
||||
buttonClassName="px-10 py-4 rounded-full text-lg font-bold hover:scale-105 transition-transform"
|
||||
mediaWrapperClassName="mt-12 rounded-3xl overflow-hidden"
|
||||
/>
|
||||
</div>
|
||||
@@ -174,8 +174,8 @@ export default function LandingPage() {
|
||||
]}
|
||||
showRating={true}
|
||||
animationType="slide-up"
|
||||
title="Trusted by 400+ Happy Customers - 4.8★ Rating"
|
||||
description="Hear from satisfied customers across Patras who trust our expert grooming services"
|
||||
title="What Our Clients Say"
|
||||
description="Trusted by hundreds of satisfied customers across Patras - Rating 4.8/5 from 46+ reviews"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
textBoxTitleClassName="text-4xl md:text-5xl font-bold"
|
||||
|
||||
Reference in New Issue
Block a user