Merge version_2 into main #4
@@ -1,47 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Archivo } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const archivo = Archivo({
|
||||
variable: "--font-archivo",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Agência Alegre - Marketing Digital Estratégico",
|
||||
description: "Agência de marketing digital focada em estratégia e tráfego pago para empresas que querem crescer de forma estruturada. Meta Ads, Google Ads e posicionamento online.",
|
||||
keywords: "agência marketing digital, gestão tráfego pago, Meta Ads, Google Ads, marketing estratégico, captação leads, posicionamento online",
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Agência Alegre - Marketing Digital Estratégico",
|
||||
description: "Transformamos presença digital em oportunidades reais com estratégia e planejamento.",
|
||||
siteName: "Agência Alegre",
|
||||
type: "website",
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Agência Alegre - Marketing Digital Estratégico",
|
||||
description: "Crescimento estruturado para empresas que entendem marketing como investimento.",
|
||||
},
|
||||
};
|
||||
title: "Agência Alegre - Marketing Digital Estratégico", description: "Crescimento estratégico para empresas que querem evoluir. Marketing com planejamento, direção e resultados mensuráveis."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="pt-BR" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${archivo.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="pt-BR">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1409,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -282,7 +282,7 @@ export default function HomePage() {
|
||||
animationType="entrance-slide"
|
||||
background={{ variant: "radial-gradient" }}
|
||||
useInvertedBackground={true}
|
||||
buttons={[]}
|
||||
buttons={[{ text: "Começar Diagnóstico", href: "#contact" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -327,4 +327,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user