import { type NextPage } from "next"; import Head from "next/head"; import ResourceTable from "~/components/ResourceTable"; import { api } from "~/utils/api"; const Home: NextPage = () => { const query = api.auditoryResource.getAll.useQuery(); return ( <>