8 Commits

Author SHA1 Message Date
cba89abfdc Update src/app/page.tsx 2026-03-05 18:10:15 +00:00
8737e787b1 Update src/app/layout.tsx 2026-03-05 18:10:15 +00:00
24d69bec63 Merge version_2 into main
Merge version_2 into main
2026-03-05 18:08:36 +00:00
d78b4030a3 Update src/app/page.tsx 2026-03-05 18:08:32 +00:00
c0290acbd5 Update src/app/layout.tsx 2026-03-05 18:08:32 +00:00
ff39771d78 Merge version_1 into main
Merge version_1 into main
2026-03-05 18:04:11 +00:00
f1c4d2ce75 Merge version_1 into main
Merge version_1 into main
2026-03-05 18:03:26 +00:00
dbcfdcc3b2 Merge version_1 into main
Merge version_1 into main
2026-03-05 18:02:13 +00:00
2 changed files with 14 additions and 35 deletions

View File

@@ -1,48 +1,28 @@
import type { Metadata } from "next";
import { DM_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", 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: "Professional barbershop in Patras offering precision haircuts, beard grooming, and premium styling products. Traditional barbering with modern expertise.", keywords: "barbershop Patras, haircut Patras, κουρείο Πάτρα, men grooming, beard trimming, professional barber", robots: {
index: true,
follow: true,
},
openGraph: {
title: "BARBERSHOP ΘΩΜΑΣ - Premium Men's Grooming", description: "Professional barbershop in Patras. Precision haircuts, beard grooming, and premium styling products.", type: "website", siteName: "BARBERSHOP ΘΩΜΑΣ", images: [
{
url: "http://img.b2bpic.net/free-photo/hairdresser-cut-hair-her-client-hair-salon_1157-27198.jpg", alt: "BARBERSHOP ΘΩΜΑΣ - Premium Grooming"},
],
},
twitter: {
card: "summary_large_image", title: "BARBERSHOP ΘΩΜΑΣ - Premium Men's Grooming", description: "Professional barbershop in Patras offering precision haircuts and grooming services.", images: ["http://img.b2bpic.net/free-photo/hairdresser-cut-hair-her-client-hair-salon_1157-27198.jpg"],
},
};
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,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${dmSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1410,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -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>