2024-05-13 00:21:44 +02:00
|
|
|
<template>
|
2025-03-27 22:20:04 +01:00
|
|
|
<div
|
|
|
|
|
class="h-svh flex items-center justify-center px-4 bg-center bg-no-repeat bg-cover"
|
|
|
|
|
:style="{
|
|
|
|
|
backgroundImage: 'url(/images/banner.webp)',
|
|
|
|
|
}"
|
|
|
|
|
>
|
2025-03-28 01:16:24 +01:00
|
|
|
<Card class="w-full max-w-md *:w-full p-6">
|
2024-12-02 23:03:38 +01:00
|
|
|
<CardHeader>
|
2024-12-07 22:17:22 +01:00
|
|
|
<CardTitle>{{ m.aware_awful_crow_spur() }}</CardTitle>
|
2025-03-27 22:20:04 +01:00
|
|
|
<CardDescription
|
|
|
|
|
>{{ m.mushy_soft_lizard_propel() }}<br />{{
|
|
|
|
|
m.short_arable_leopard_zap()
|
|
|
|
|
}}
|
2024-12-02 23:03:38 +01:00
|
|
|
</CardDescription>
|
|
|
|
|
</CardHeader>
|
|
|
|
|
<CardContent class="grid">
|
2025-03-27 22:20:04 +01:00
|
|
|
<pre
|
|
|
|
|
class="rounded bg-muted px-4 py-2 border text-center w-full font-mono text-sm font-semibold select-all"
|
|
|
|
|
>{{ code }}</pre
|
|
|
|
|
>
|
2024-12-02 23:03:38 +01:00
|
|
|
</CardContent>
|
|
|
|
|
</Card>
|
2024-06-15 23:18:58 +02:00
|
|
|
</div>
|
2024-05-13 00:21:44 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
2024-12-02 23:03:38 +01:00
|
|
|
import {
|
|
|
|
|
Card,
|
|
|
|
|
CardContent,
|
|
|
|
|
CardDescription,
|
|
|
|
|
CardHeader,
|
|
|
|
|
CardTitle,
|
|
|
|
|
} from "~/components/ui/card";
|
2025-07-16 07:48:39 +02:00
|
|
|
import * as m from "~~/paraglide/messages.js";
|
2024-12-02 23:03:38 +01:00
|
|
|
|
2024-12-07 11:21:13 +01:00
|
|
|
useHead({
|
2024-12-07 22:17:22 +01:00
|
|
|
title: m.spare_aqua_warthog_mend(),
|
2024-12-07 11:21:13 +01:00
|
|
|
});
|
|
|
|
|
|
2024-12-02 23:32:13 +01:00
|
|
|
const { code } = useUrlSearchParams();
|
2024-05-13 00:21:44 +02:00
|
|
|
</script>
|