add new price scheme

This commit is contained in:
Thomas Ruoff
2023-01-08 23:27:58 +01:00
parent 5e7c7c17d2
commit ead7ac1247
2 changed files with 10 additions and 6 deletions

View File

@@ -9,6 +9,10 @@ export default function Home() {
des Freundeskreis des VCP Rosenfeld e.V.
</span>
</h1>
<p className="my-6 info-message inline-flex">
Ab 2023 gilt ein neues
<Link href="./prices" className="ml-1 font-medium text-blue-400 underline cursor-pointer hover:text-blue-600">Preismodell</Link>!
</p>
<p className="mt-3 text-gray-500 sm:mt-5 sm:text-lg md:text-xl">
Für Lager, Vereinsausflüge, Urlaubsreisen, Umzüge, etc. kann man unser
Pfadi-Bussle mieten.
@@ -64,4 +68,4 @@ export default function Home() {
</p>
</div>
)
}
}

View File

@@ -23,24 +23,24 @@ export default function Prices() {
<tr>
<td className="px-6 py-4">bis 200 km</td>
<td className="px-6 py-4">
0,42 <br />
0,50 <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>
<td className="px-6 py-4">0,30 </td>
</tr>
<tr>
<td className="px-6 py-4">1001 - 2000 km</td>
<td className="px-6 py-4">0,20 </td>
<td className="px-6 py-4">0,25 </td>
</tr>
<tr>
<td className="px-6 py-4">ab 2001 km</td>
<td className="px-6 py-4">0,18 </td>
<td className="px-6 py-4">0,20 </td>
</tr>
</tbody>
</table>
</>
)
}
}