Merge version_2 into main #7

Merged
bender merged 2 commits from version_2 into main 2026-03-03 19:13:03 +00:00
2 changed files with 12 additions and 40 deletions

View File

@@ -1,49 +1,22 @@
import type { Metadata } from "next";
import { DM_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import './globals.css';
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ['latin'] });
export const metadata: Metadata = {
title: "Proteção Veicular em Jundiaí | Mohav - 4,7 ⭐", description: "Proteção veicular acessível e transparente em Jundiaí. Planos com cobertura contra roubo, furto, colisão e guincho 24h. Atendimento ágil e confiável.", keywords: "proteção veicular Jundiaí, seguro auto Jundiaí, associação veicular, proteção para carro", metadataBase: new URL("https://mohav.com.br"),
alternates: {
canonical: "https://mohav.com.br"
},
openGraph: {
title: "Proteção Veicular em Jundiaí | Mohav", description: "Proteção financeira real para seu veículo. Planos acessíveis com atendimento ágil e transparência total.", url: "https://mohav.com.br", siteName: "Mohav Proteção Veicular", type: "website"
},
twitter: {
card: "summary_large_image", title: "Proteção Veicular em Jundiaí | Mohav", description: "Proteja seu carro com a Mohav. Planos acessíveis, atendimento 24h e suporte quando você precisa."
},
robots: {
index: true,
follow: true
}
title: 'Create Next App',
description: 'Generated by create next app',
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${dmSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1384,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -55,7 +55,7 @@ export default function LandingPage() {
imagePosition="right"
mediaAnimation="slide-up"
buttons={[
{ text: "Solicitar Cotação", href: "#hero" },
{ text: "Cotação Gratuita Agora", href: "#hero" },
{ text: "Falar no WhatsApp", href: "https://wa.me/5511945863001" }
]}
buttonAnimation="slide-up"
@@ -259,4 +259,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}