Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1d3fa58aaa | |||
| d8a99fc992 | |||
| d06dd441ca | |||
| 34224f333e | |||
| 8483a490a5 | |||
| 0c7afb46ae | |||
| 4434e5bd47 | |||
| e40e870cef | |||
| 9677fad709 | |||
| 04c7fbe596 | |||
| e3bd307791 |
@@ -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>
|
||||
);
|
||||
}
|
||||
@@ -148,7 +148,7 @@ export default function HomePage() {
|
||||
|
||||
<div id="problem" data-section="problem">
|
||||
<AboutMetric
|
||||
title="A maioria das empresas investe em marketing sem estratégia. Impulsionar posts não é estratégia. Publicar sem planejamento não gera previsibilidade. Marketing precisa de direção."
|
||||
title="Por que a maioria fracassa em marketing digital"
|
||||
metrics={[
|
||||
{
|
||||
icon: AlertCircle,
|
||||
@@ -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>
|
||||
|
||||
|
||||
@@ -2,23 +2,23 @@
|
||||
/* Base units */
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
/* --background: #fafffb;;
|
||||
--card: #f7fffa;;
|
||||
--foreground: #001a0a;;
|
||||
--primary-cta: #0a7039;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--accent: #a8d9be;;
|
||||
--background-accent: #6bbf8e;; */
|
||||
/* --background: #001F3F;;
|
||||
--card: #0066CC;;
|
||||
--foreground: #FFFFFF;;
|
||||
--primary-cta: #0066CC;;
|
||||
--secondary-cta: #FBBF24;;
|
||||
--accent: #60A5FA;;
|
||||
--background-accent: #FBBF24;; */
|
||||
|
||||
--background: #fafffb;;
|
||||
--card: #f7fffa;;
|
||||
--foreground: #001a0a;;
|
||||
--primary-cta: #0a7039;;
|
||||
--background: #001F3F;;
|
||||
--card: #0066CC;;
|
||||
--foreground: #FFFFFF;;
|
||||
--primary-cta: #0066CC;;
|
||||
--primary-cta-text: #fafffb;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--secondary-cta: #FBBF24;;
|
||||
--secondary-cta-text: #001a0a;;
|
||||
--accent: #a8d9be;;
|
||||
--background-accent: #6bbf8e;;
|
||||
--accent: #60A5FA;;
|
||||
--background-accent: #FBBF24;;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user