mirror of
https://github.com/jakejarvis/sofa.git
synced 2026-08-29 03:55:38 -04:00
- Swap Jotai `movieStatsAtom`/`episodeStatsAtom` atoms for `useState` + `useEffect` calling `getStatsAction` directly on period change - Remove dependency on `lib/atoms/stats` module - Add touch-friendly tap target padding to `inlineTriggerClass` via negative margin compensation on mobile
13 lines
205 B
TypeScript
13 lines
205 B
TypeScript
import type { MetadataRoute } from "next";
|
|
|
|
export default function robots(): MetadataRoute.Robots {
|
|
return {
|
|
rules: [
|
|
{
|
|
userAgent: "*",
|
|
disallow: ["/"],
|
|
},
|
|
],
|
|
};
|
|
}
|