Merge version_2 into main #4
@@ -1,50 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Manrope } from "next/font/google";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const manrope = Manrope({
|
||||
variable: "--font-manrope", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "BarberShop Sadik | Barberia Professionale a Teramo", description: "Scopri BarberShop Sadik, la barberia numero 1 a Teramo. Taglio capelli, cura barba e rasatura tradizionale con barbieri professionisti. Prenota online ora!", keywords: "barbiere Teramo, barber shop Teramo, taglio capelli, cura barba, rasatura, barberia", openGraph: {
|
||||
title: "BarberShop Sadik - Barberia Professionale a Teramo", description: "Barberia di qualità a Teramo. Professionisti con esperienza. Prenota il tuo appuntamento oggi.", type: "website", siteName: "BarberShop Sadik"
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "BarberShop Sadik | Barberia a Teramo", description: "Scopri la migliore barberia a Teramo con team professionista."
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
title: "BarberShop Sadik", description: "Barberia professionale a Teramo - Tagli, rasature e cura della barba"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${manrope.variable} ${dmSans.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="it">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1412,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -195,8 +195,8 @@ export default function LandingPage() {
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "rotated-rays-animated-grid" }}
|
||||
useInvertedBackground={false}
|
||||
inputPlaceholder="La tua email"
|
||||
buttonText="Invia Richiesta"
|
||||
inputPlaceholder="Email o Telefono"
|
||||
buttonText="Prenota Subito"
|
||||
termsText="Iscrivendoti accetti di ricevere comunicazioni da BarberShop Sadik. Potrai annullare l'iscrizione in qualsiasi momento."
|
||||
/>
|
||||
</div>
|
||||
@@ -234,4 +234,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user