mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-03 06:27:11 +01:00
49 lines
1.4 KiB
TypeScript
49 lines
1.4 KiB
TypeScript
import Layout from '../components/layout'
|
|
|
|
export default function Prices() {
|
|
return (
|
|
<Layout>
|
|
<h1 className="mb-3 text-xl font-extrabold">Preise</h1>
|
|
<table className="divide-y divide-gray-200">
|
|
<thead className="bg-gray-50">
|
|
<tr>
|
|
<th
|
|
scope="col"
|
|
className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider"
|
|
>
|
|
Gefahrene km
|
|
</th>
|
|
<th
|
|
scope="col"
|
|
className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider"
|
|
>
|
|
Preis/km
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody className="bg-white divide-y divide-gray-200">
|
|
<tr>
|
|
<td className="px-6 py-4">bis 200 km</td>
|
|
<td className="px-6 py-4">
|
|
0,42 €<br />
|
|
Sprit inklusive
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td className="px-6 py-4">201 - 1000 km</td>
|
|
<td className="px-6 py-4">0,25 €</td>
|
|
</tr>
|
|
<tr>
|
|
<td className="px-6 py-4">1001 - 2000 km</td>
|
|
<td className="px-6 py-4">0,20 €</td>
|
|
</tr>
|
|
<tr>
|
|
<td className="px-6 py-4">ab 2001 km</td>
|
|
<td className="px-6 py-4">0,18 €</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</Layout>
|
|
)
|
|
}
|