Full app with AI campaign creation/copy/creative generation, dashboard, campaign automation engine, Meta OAuth login, and a redesigned landing page. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
26 lines
886 B
TypeScript
26 lines
886 B
TypeScript
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
import { ThemeProvider, themeInitScript } from "@/components/theme/ThemeProvider";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "MetaAds Pro — Dashboard de Facebook Ads",
|
|
description: "Gerencie suas campanhas de Facebook Ads em tempo real. Veja métricas de Spend, CTR, CPC, CPM, Leads e ROAS. Pause, reative e altere orçamentos.",
|
|
icons: { icon: "/favicon.ico" },
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="pt-BR" className="h-full antialiased" suppressHydrationWarning>
|
|
<head>
|
|
<script dangerouslySetInnerHTML={{ __html: themeInitScript }} />
|
|
</head>
|
|
<body className="min-h-full flex flex-col" suppressHydrationWarning>
|
|
<ThemeProvider>{children}</ThemeProvider>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|