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

24
src/components/NavBar.tsx Normal file
View File

@@ -0,0 +1,24 @@
import Image from 'next/image'
import { Inter } from 'next/font/google'
const inter = Inter({ subsets: ['latin'] })
export default function Home() {
return (
<main>
<div>
<section className="container-fluid bg-[#FFF6F2]">
<div className="container mx-auto px-4">
<div className='flex flex-row gap-x-2 md:gap-x-16 p-4 justify-center whitespace-nowrap'>
<a href="/add-school-form">Add School </a>|
<a href="/school-list">School List</a>|
<a href="/add-user-form">Add User </a>|
<a href="/user-list">User List </a>
</div>
</div>
</section>
</div>
</main>
)
}