2024-04-15 03:16:57 +02:00
|
|
|
<template>
|
2024-12-07 13:36:31 +01:00
|
|
|
<div class="flex h-svh items-center justify-center px-6 py-12 lg:px-8 bg-center bg-no-repeat bg-cover" :style="{
|
|
|
|
|
backgroundImage: 'url(/images/banner.webp)'
|
|
|
|
|
}">
|
|
|
|
|
<Card class="w-full max-w-md">
|
|
|
|
|
<CardHeader>
|
2024-12-07 22:17:22 +01:00
|
|
|
<CardTitle>{{ m.late_mean_capybara_fade() }}</CardTitle>
|
2024-12-07 13:36:31 +01:00
|
|
|
<CardDescription>
|
2024-12-07 22:17:22 +01:00
|
|
|
{{ m.left_maroon_myna_drip() }}
|
2024-12-07 13:36:31 +01:00
|
|
|
</CardDescription>
|
|
|
|
|
</CardHeader>
|
|
|
|
|
<CardFooter class="grid">
|
|
|
|
|
<Button :as="NuxtLink" href="/" variant="default">
|
2024-12-07 22:17:22 +01:00
|
|
|
{{ m.every_tangy_koala_persist() }}
|
2024-12-07 13:36:31 +01:00
|
|
|
</Button>
|
|
|
|
|
</CardFooter>
|
|
|
|
|
</Card>
|
2024-04-15 03:16:57 +02:00
|
|
|
</div>
|
2024-12-07 13:36:31 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { Button } from "~/components/ui/button";
|
|
|
|
|
import { Card, CardFooter, CardHeader, CardTitle } from "~/components/ui/card";
|
2024-12-07 22:17:22 +01:00
|
|
|
import * as m from "~/paraglide/messages.js";
|
2024-12-07 13:36:31 +01:00
|
|
|
import { NuxtLink } from "#components";
|
|
|
|
|
|
|
|
|
|
useHead({
|
|
|
|
|
title: "Success!",
|
|
|
|
|
});
|
|
|
|
|
</script>
|