25 lines
754 B
TypeScript
25 lines
754 B
TypeScript
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>
|
|
)
|
|
}
|