Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9ac84261d6 | |||
| 35b2712439 | |||
| e7af860c78 | |||
| e94a9769ce | |||
| 6ce2ddddcb |
@@ -1,50 +1,28 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Nunito } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import { Halant } from "next/font/google";
|
import "@/styles/globals.css";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import "./globals.css";
|
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const nunito = Nunito({
|
const geist = Geist({
|
||||||
variable: "--font-nunito", subsets: ["latin"],
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
const halant = Halant({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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", description: "Barbearia premium com profissionais experientes"};
|
||||||
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"],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
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={`${nunito.variable} ${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1412,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -134,7 +134,7 @@ export default function BarbershopPage() {
|
|||||||
{ id: "1", value: "10+", description: "Anos Servindo a Comunidade" },
|
{ id: "1", value: "10+", description: "Anos Servindo a Comunidade" },
|
||||||
{ id: "2", value: "5000+", description: "Clientes Satisfeitos" },
|
{ id: "2", value: "5000+", description: "Clientes Satisfeitos" },
|
||||||
{ id: "3", value: "15", description: "Barbeiros Profissionais" },
|
{ 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"
|
gridVariant="uniform-all-items-equal"
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
|
|||||||
Reference in New Issue
Block a user