52 lines
1.7 KiB
TypeScript
52 lines
1.7 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>
|
|
{/* Satoshi (brand) + Instrument Serif (editorial accent) */}
|
|
<link rel="preconnect" href="https://api.fontshare.com" crossOrigin="" />
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,700,900&display=swap"
|
|
/>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="" />
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap"
|
|
/>
|
|
<meta name="robots" content="noindex, nofollow, noarchive, nosnippet" />
|
|
<meta name="theme-color" content="#0a0a12" />
|
|
</head>
|
|
<body>
|
|
<a href="#main" className="skip-link">
|
|
Saltar al contenido
|
|
</a>
|
|
<SmoothScroll />
|
|
<Cursor />
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|