Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4434e5bd47 | |||
| e40e870cef | |||
| 9677fad709 | |||
| 04c7fbe596 | |||
| e3bd307791 |
@@ -1,47 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Archivo } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const archivo = Archivo({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-archivo",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Agência Alegre - Marketing Digital Estratégico",
|
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."};
|
||||||
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.",
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="pt-BR" suppressHydrationWarning>
|
<html lang="pt-BR">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body className={`${archivo.variable} antialiased`}>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1409,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -282,7 +282,7 @@ export default function HomePage() {
|
|||||||
animationType="entrance-slide"
|
animationType="entrance-slide"
|
||||||
background={{ variant: "radial-gradient" }}
|
background={{ variant: "radial-gradient" }}
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
buttons={[]}
|
buttons={[{ text: "Começar Diagnóstico", href: "#contact" }]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user