agency-web/app/layout.tsx

40 lines
1.1 KiB
TypeScript

import type { Metadata } from "next";
import "./globals.css";
import SmoothScroll from "./components/SmoothScroll";
import Cursor from "./components/Cursor";
export const metadata: Metadata = {
title: "Feedback Studios — La agencia de marketing AI-native",
description:
"Estrategia humana, ejecución sobre nuestra propia plataforma de IA. Web, SEO, ads y contenido: más rápido, más medible y a mejor coste.",
// Test environment — keep everything out of search engines.
robots: {
index: false,
follow: false,
nocache: true,
googleBot: { index: false, follow: false },
},
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="es">
<head>
<link
rel="stylesheet"
href="https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700,900&display=swap"
/>
<meta name="robots" content="noindex, nofollow, noarchive, nosnippet" />
</head>
<body>
<SmoothScroll />
<Cursor />
{children}
</body>
</html>
);
}