SPB Git forge
3commits 1branches 0releases
417.0 KBsize
maindefault branch
10 days agolast push
TypeScript 66.5% Python 30.9% JavaScript 1.4% CSS 0.7%
552 B · 15 lines tsx
Raw Blame History
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