Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 463220f8e8 | |||
| b966405507 | |||
| c71c27b6b3 | |||
| 3b45d8eb12 | |||
| 0d59813e99 | |||
| c3100ac5b6 | |||
| d070d30425 |
@@ -1,48 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Mulish } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const mulish = Mulish({
|
|
||||||
variable: "--font-mulish", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Anne-France Coiffure Mixte - Salon à Saint-Robert", description: "Salon de coiffure professionnel à Saint-Robert pour femmes, hommes et enfants. Coupe, coloration, balayage. Experts depuis 15 ans. 5⭐ recommandé. Appelez maintenant.", keywords: "coiffeur Saint-Robert, salon de coiffure Saint-Robert, coiffure mixte, coupe femme, coupe homme, coloration, balayage", metadataBase: new URL("https://anne-france-coiffure.com"),
|
title: "Anne-France Coiffure Mixte - Salon de coiffure à Saint-Robert", description: "Coiffure mixte à Saint-Robert. Coupes, colorations et coiffures pour femmes, hommes et enfants. Plus de 15 ans d'expérience."};
|
||||||
openGraph: {
|
|
||||||
title: "Anne-France Coiffure Mixte", description: "Votre salon de coiffure professionnel à Saint-Robert - Femmes, Hommes, Enfants", url: "https://anne-france-coiffure.com", siteName: "Anne-France Coiffure Mixte", type: "website"},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
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="fr">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1410,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -91,10 +91,10 @@ export default function LandingPage() {
|
|||||||
showRating={true}
|
showRating={true}
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
animationType="slide-up"
|
|
||||||
tag="Avis clients"
|
tag="Avis clients"
|
||||||
tagIcon={Star}
|
tagIcon={Star}
|
||||||
tagAnimation="blur-reveal"
|
tagAnimation="blur-reveal"
|
||||||
|
animationType="slide-up"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user