Added Notifications

This commit is contained in:
2026-05-16 23:48:18 +10:00
parent 69d72e0912
commit 1d5b9f340f
61 changed files with 4204 additions and 182 deletions
@@ -0,0 +1,29 @@
<script setup lang="ts">
import { Achievement, Airline, Alliance, Flight, User } from '@/Types/types'
import AllianceChallenge from '@/Components/FlightsGoneBy/AllianceChallenge.vue'
defineProps<{
achievement: Achievement
user: User
isFollowing: boolean
alliance: Alliance
airlines: Airline[]
flights: Flight[]
}>()
</script>
<template>
<AllianceChallenge
:achievement="achievement"
:user="user"
:isFollowing="isFollowing"
:alliance="alliance"
:airlines="airlines"
:flights="flights"
>
<p>
The SkyTeam Alliance is the youngest of the 3 major alliances, but does not have the smallest roster!
</p>
</AllianceChallenge>
</template>