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