Merge version_2 into main #4
@@ -1,50 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Nunito } from "next/font/google";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "@/styles/globals.css";
|
||||
|
||||
const nunito = Nunito({
|
||||
variable: "--font-nunito", subsets: ["latin"],
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Barbearia Manuh | Cortes de Cabelo e Barba Premium", description: "Barbearia Manuh oferece serviços profissionais de corte, barba e rasagem clássica. Barbeiros experientes, ambiente acolhedor. Agende agora!", keywords: "barbearia, corte de cabelo, barba, barbeiro profissional, rasagem, grooming, salão de beleza", openGraph: {
|
||||
title: "Barbearia Manuh | Cortes Premium", description: "Descubra os melhores serviços de barbearia com profissionais experientes", siteName: "Barbearia Manuh", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/handsome-bearded-man-barbershop-barber-work_627829-7279.jpg", alt: "Barbearia Manuh - Salão profissional"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Barbearia Manuh | Cortes Premium", description: "Os melhores serviços de barbearia da região", images: ["http://img.b2bpic.net/free-photo/handsome-bearded-man-barbershop-barber-work_627829-7279.jpg"],
|
||||
},
|
||||
};
|
||||
title: "Barbearia Manuh", description: "Barbearia premium com profissionais experientes"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${nunito.variable} ${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1412,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -134,7 +134,7 @@ export default function BarbershopPage() {
|
||||
{ id: "1", value: "10+", description: "Anos Servindo a Comunidade" },
|
||||
{ id: "2", value: "5000+", description: "Clientes Satisfeitos" },
|
||||
{ id: "3", value: "15", description: "Barbeiros Profissionais" },
|
||||
{ id: "4", value: "4.9★", description: "Avaliação Média" },
|
||||
{ id: "4", value: "98%", description: "Taxa de Retenção de Clientes" },
|
||||
]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
|
||||
Reference in New Issue
Block a user