18 lines
351 B
TypeScript
18 lines
351 B
TypeScript
import Link from 'next/link';
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<p className='text-xl'>Witamy</p>
|
|
<div className="flex gap-4">
|
|
<Link href={'/kitchen/'}>
|
|
<button>Kuchnia</button>
|
|
</Link>
|
|
<Link href={'/waiter/'}>
|
|
<button>Kelner</button>
|
|
</Link>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|