add-school-form
This commit is contained in:
24
src/components/NavBar.tsx
Normal file
24
src/components/NavBar.tsx
Normal 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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user