Initial commit

This commit is contained in:
Haitham Khalifa
2026-02-16 12:02:45 +01:00
commit 11252e6520
37 changed files with 8118 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
import "./globals.css";
export const metadata = {
title: "SiteMente | Agencia de Implementación de IA",
description:
"SiteMente ayuda a negocios locales en España con agentes de voz, chatbots, webs inteligentes y automatización.",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="es" suppressHydrationWarning>
<body className="bg-white" suppressHydrationWarning>
{children}
</body>
</html>
);
}