Biking-Page/src/components/Home.vue
2025-03-12 22:53:07 +01:00

24 lines
2.5 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script setup lang="ts">
import Card from "./Tags/Card.vue";
</script>
<template>
<h1 class="text-3xl">Bike Rides</h1>
<hr class="mb-6 border-1 border-slate-300" />
<Card link="/Tours/14" date="2024-09-29 0820" :video="false" path="/Images/2024-09-29/PXL_20240924_063112823.avif" :width="1434" :height="1080">Ride To Kerteminde</Card>
<Card link="/Tours/13" date="2024-08-31 0800" :video="false" path="/Images/2024-08-31/PXL_20240831_060050684.avif" :width="1434" :height="1080">Ride To Faaborg</Card>
<Card link="/Tours/12" date="2024-08-03 0650" :video="false" path="/Images/2024-08-03/PXL_20240803_073936592.avif" :width="1434" :height="1080">Just A normal Ride</Card>
<Card link="/Tours/11" date="2024-07-19 0650" :video="false" path="/Images/2024-07-19/PXL_20240719_045037254.avif" :width="1434" :height="1080">Ride To Flyvesandet</Card>
<Card link="/Tours/10" date="2024-07-11 0720" :video="false" path="/Images/2024-07-11/PXL_20240711_053735163.avif" :width="1434" :height="1080">Ride To Lindøhoved</Card>
<Card link="/Tours/9" date="2024-05-08 1019" :video="false" path="/Images/2024-05-08/PXL_20240508_081926801.avif" :width="1434" :height="1080">First Of The Year</Card>
<Card link="/Tours/8" date="2023-09-10 0843" :video="true" path="/Images/2023-09-10/PXL_20230910_064305237.mp4" :width="1434" :height="1080">Staircase To Nowhere?</Card>
<Card link="/Tours/7" date="2023-07-20 0445" :video="false" path="/Images/2023-07-20/PXL_20230720_032106972.avif" :width="1434" :height="1080">Long Ride</Card>
<Card link="/Tours/6" date="2023-07-17 04:42" :video="false" path="/Images/2023-07-17/PXL_20230717_025527239.avif" :width="1434" :height="1080">Cats :3</Card>
<Card link="/Tours/5" date="2023-07-15 02:22" :video="false" path="/Images/2023-07-15/PXL_20230715_022235200.avif" :width="1434" :height="1080">Very Early Morning</Card>
<Card link="/Tours/4" date="2023-07-08 05:01" :video="false" path="/Images/2023-07-08/PXL_20230708_030151033.avif" :width="1434" :height="1080">Awesome Morning</Card>
<Card link="/Tours/3" date="2023/06/16 16:25" :video="false" path="/Images/2023-06-16/PXL_20230616_162528682.avif" :width="1434" :height="1080">Happy Cow :)</Card>
<Card link="/Tours/2" date="2023/06/15 18:08" :video="false" path="/Images/2023-06-15/PXL_20230615_183905584.avif" :width="1434" :height="1080">Afternoon Ride</Card>
<Card link="/Tours/1" date="2023/06/08 18:11" :video="false" path="/Images/PXL_20230531_181113680_scaled.avif" :width="1434" :height="1080">First Bike Ride With This Phone</Card>
</template>