Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 038a1ccab0 | |||
| ff74c19562 | |||
| 9bf152892f | |||
| 5c6ec5a481 | |||
| 8c214ac431 | |||
| 95058e15cf | |||
| afd9741c19 | |||
| 408f7b6b28 | |||
| cc24477fff | |||
| 7c3c57442f |
@@ -1,55 +1,21 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { DM_Sans } from "next/font/google";
|
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "@/styles/globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const dmSans = DM_Sans({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-dm-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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Hair Brisson - Especialista em Transformações Capilares", description: "Salão de beleza especializado em mechas loiras, morena iluminada, ruivas e cabelos cacheados. 6 anos de experiência com atendimento personalizado. Serra - ES.", keywords: "cabeleireiro Serra ES, salão de beleza, mechas loiras, transformação capilar, luan brisson hair", robots: {
|
title: "Hair Brisson - Transformações Capilares Personalizadas", description: "Especialista em mechas loiras, morena iluminada, ruivas e tratamento de cabelos cacheados. 6 anos de expertise."
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Hair Brisson - Transformações Capilares Exclusivas", description: "Especialista em coloração e transformação capilar. Atendimento personalizado com 6 anos de experiência.", type: "website", siteName: "Hair Brisson", images: [
|
|
||||||
{
|
|
||||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARk3Qqzj3GyU6SqPKPPHBAXZkO/uploaded-1772562593397-egkz4f6i.jpg", alt: "Hair Brisson Logo"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Hair Brisson - Transformações Capilares", description: "Especialista em transformação capilar com 6 anos de experiência. Mechas, morena iluminada, ruivas e tratamento de cachos.", images: [
|
|
||||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARk3Qqzj3GyU6SqPKPPHBAXZkO/uploaded-1772562593397-egkz4f6i.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="pt-BR">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${dmSans.variable} ${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1417,7 +1383,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -143,7 +143,7 @@ export default function LandingPage() {
|
|||||||
<div id="testimonials" data-section="testimonials">
|
<div id="testimonials" data-section="testimonials">
|
||||||
<TestimonialCardTwo
|
<TestimonialCardTwo
|
||||||
title="Depoimentos de Clientes"
|
title="Depoimentos de Clientes"
|
||||||
description="Histórias de transformação e confiança de quem já passou pelas mãos do Luan"
|
description="Histórias de transformação de 100+ clientes satisfeitos"
|
||||||
tag="Satisfação"
|
tag="Satisfação"
|
||||||
tagIcon={Heart}
|
tagIcon={Heart}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
@@ -219,4 +219,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -214,4 +214,4 @@
|
|||||||
--height-140: 126vw;
|
--height-140: 126vw;
|
||||||
--height-150: 135vw;
|
--height-150: 135vw;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user