diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ae52755..4b2b429 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}