add-school-form

This commit is contained in:
2023-05-01 11:54:43 +05:30
parent 2be7692145
commit 6e44cd02a0
8 changed files with 442 additions and 110 deletions

13
src/pages/test/index.tsx Normal file
View File

@@ -0,0 +1,13 @@
import Image from 'next/image'
import NavBar from '../../components/NavBar'
import { Inter } from 'next/font/google'
const inter = Inter({ subsets: ['latin'] })
export default function Home() {
return (
<main>
<NavBar />
</main>
)
}