import { NextPageWithExtras } from "next"; import SonCreationForm from "@/components/SonCreationForm"; const NewSonPage: NextPageWithExtras = () => { return (

Create New Son

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