Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 35387a1d96 | |||
| 4e714bb69d | |||
| c1cc35ff67 | |||
| d40d23cf81 | |||
| 2015a3cd62 | |||
| 9cb7acad38 | |||
| 26d36d2b85 | |||
| bddd513960 |
@@ -1,50 +1,32 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from 'next';
|
||||||
import { Halant } from "next/font/google";
|
import { Geist, Geist_Mono } from 'next/font/google';
|
||||||
import { Inter } from "next/font/google";
|
import './globals.css';
|
||||||
import { Source_Sans_3 } from "next/font/google";
|
|
||||||
import "./globals.css";
|
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const geist = Geist({
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
variable: '--font-geist-sans',
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
subsets: ['latin'],
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: '--font-geist-mono',
|
||||||
});
|
subsets: ['latin'],
|
||||||
|
|
||||||
const sourceSans3 = Source_Sans_3({
|
|
||||||
variable: "--font-source-sans-3", subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "PALIAVA – Premium Barbershop in Kaunas Old Town", description: "Elite barbershop in Kaunas. Expert haircuts, serious craftsmanship, and a cult-like community. Book your appointment today.", keywords: "barbershop Kaunas, haircut, barber, men's grooming, premium haircuts", openGraph: {
|
title: 'PALIAVA - Kaunas Luxury Barbershop',
|
||||||
title: "PALIAVA – Luxury Underground Barbershop", description: "Elite barbershop in Kaunas Old Town. Good haircuts. Questionable conversations.", siteName: "PALIAVA", type: "website", images: [
|
description: 'Premium haircuts and grooming in Kaunas Old Town. Serious craftsmanship, questionable conversations.',
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/hairdressing-chair-vintage-barber-shop_23-2148298304.jpg", alt: "PALIAVA Barbershop"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "PALIAVA – Premium Barbershop", description: "Elite haircuts in Kaunas Old Town", images: ["http://img.b2bpic.net/free-photo/hairdressing-chair-vintage-barber-shop_23-2148298304.jpg"],
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||||
<body
|
{children}
|
||||||
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1412,7 +1394,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -155,8 +155,8 @@ export default function LandingPage() {
|
|||||||
<TeamCardTen
|
<TeamCardTen
|
||||||
title="Meet the Barbers"
|
title="Meet the Barbers"
|
||||||
tag="The Craftsmen"
|
tag="The Craftsmen"
|
||||||
tagIcon={Users}
|
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
|
membersAnimation="slide-up"
|
||||||
members={[
|
members={[
|
||||||
{
|
{
|
||||||
id: "1", name: "Vilius", imageSrc: "http://img.b2bpic.net/free-photo/barber-man-apron-holding-scissors-comb-looking-camera-with-serious-face-standing-orange-background_141793-67433.jpg", imageAlt: "Vilius - Fast and precise barber"
|
id: "1", name: "Vilius", imageSrc: "http://img.b2bpic.net/free-photo/barber-man-apron-holding-scissors-comb-looking-camera-with-serious-face-standing-orange-background_141793-67433.jpg", imageAlt: "Vilius - Fast and precise barber"
|
||||||
@@ -172,7 +172,6 @@ export default function LandingPage() {
|
|||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
memberVariant="card"
|
memberVariant="card"
|
||||||
membersAnimation="slide-up"
|
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user