7 Commits

Author SHA1 Message Date
463220f8e8 Update src/app/page.tsx 2026-03-04 19:38:54 +00:00
b966405507 Update src/app/page.tsx 2026-03-04 19:37:40 +00:00
c71c27b6b3 Update src/app/page.tsx 2026-03-04 19:36:18 +00:00
3b45d8eb12 Update src/app/layout.tsx 2026-03-04 19:36:18 +00:00
0d59813e99 Merge version_1 into main
Merge version_1 into main
2026-03-04 19:34:42 +00:00
c3100ac5b6 Merge version_1 into main
Merge version_1 into main
2026-03-04 19:33:50 +00:00
d070d30425 Merge version_1 into main
Merge version_1 into main
2026-03-04 19:32:40 +00:00
2 changed files with 7 additions and 36 deletions

View File

@@ -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>
); );
} }

View File

@@ -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>