Merge version_2 into main #5
@@ -1,53 +1,21 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Montserrat } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./styles/variables.css";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Pure Toiture et Gestion | Couvreur Cantley, Gatineau, Chelsea", description: "Expert en toiture résidentielle à Cantley, QC. Installation, réparation, inspection. Service professionnel et soumission gratuite. Couvre Gatineau, Chelsea, Wakefield.", keywords: "couvreur Cantley, toiture Gatineau, réparation toiture Chelsea, installation toiture Quebec, soumission gratuite", metadataBase: new URL("https://www.puretoiture.ca"),
|
||||
alternates: {
|
||||
canonical: "https://www.puretoiture.ca"
|
||||
},
|
||||
openGraph: {
|
||||
title: "Pure Toiture et Gestion | Expert en Toiture Résidentielle", description: "Service professionnel de toiture à Cantley. Installation, réparation, inspection. Soumission gratuite et devis sans obligation.", url: "https://www.puretoiture.ca", siteName: "Pure Toiture et Gestion", type: "website", images: [
|
||||
{
|
||||
url: "https://www.puretoiture.ca/og-image.jpg", alt: "Pure Toiture - Expert en toiture résidentielle Cantley"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Pure Toiture et Gestion | Couvreur Expert", description: "Toiture professionnelle à Cantley. Installation, réparation, inspection. (819) 210-2474", images: ["https://www.puretoiture.ca/twitter-image.jpg"]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
title: "Pure Toiture - Experts en toiture à Cantley", description: "Service professionnel de toiture à Cantley, Gatineau et région. Installation, réparation, entretien et inspection. Soumission gratuite."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="fr">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1415,7 +1383,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -29,6 +29,10 @@ import {
|
||||
} from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
const handlePhoneCall = () => {
|
||||
window.location.href = 'tel:(819)210-2474';
|
||||
};
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="directional-hover"
|
||||
@@ -66,9 +70,9 @@ export default function LandingPage() {
|
||||
imageAlt="Toiture résidentielle de qualité à Cantley"
|
||||
textPosition="center"
|
||||
showDimOverlay={true}
|
||||
showBlur={true}
|
||||
showBlur={false}
|
||||
buttons={[
|
||||
{ text: "Appelez maintenant: (819) 210-2474", href: "tel:(819)210-2474" },
|
||||
{ text: "Appelez maintenant: (819) 210-2474", onClick: handlePhoneCall },
|
||||
{ text: "Demander une soumission gratuite", href: "#contact" }
|
||||
]}
|
||||
/>
|
||||
@@ -179,7 +183,7 @@ export default function LandingPage() {
|
||||
title="Obtenez votre soumission gratuite dès aujourd'hui"
|
||||
description="Contactez Pure Toiture et Gestion pour une consultation gratuite et une soumission sans engagement. Notre équipe professionnelle est prête à vous aider avec vos travaux de toiture."
|
||||
buttons={[
|
||||
{ text: "Appeler: (819) 210-2474", href: "tel:(819)210-2474" },
|
||||
{ text: "Appeler: (819) 210-2474", onClick: handlePhoneCall },
|
||||
{ text: "Envoyer un message", href: "#" }
|
||||
]}
|
||||
background={{ variant: "plain" }}
|
||||
|
||||
Reference in New Issue
Block a user