spb/satelliteindex
Public
TypeScript 66.5%
Python 30.9%
JavaScript 1.4%
CSS 0.7%
1import type { Metadata } from 'next';2import type { ReactNode } from 'react';34/** Everything under /admin is private: never indexed, never cached (see `headers()` in next.config.ts). */5export const metadata: Metadata = {6 title: { default: 'Admin', template: '%s · Admin | SatelliteIndex' },7 robots: { index: false, follow: false, nocache: true, googleBot: { index: false, follow: false } },8};910export const dynamic = 'force-dynamic';1112export default function AdminRootLayout({ children }: { children: ReactNode }) {13 return <>{children}</>;14}15