import type { NextPageWithExtras } from "next"; import Link from "next/link"; import { Button } from "@/components/ui/button"; import { SonList } from "@/components/SonList"; const SonListPage: NextPageWithExtras = () => { return (

Manage Sons

); }; SonListPage.auth = true; export default SonListPage;