2023-09-23 12:07:45 +02:00
|
|
|
<template>
|
2024-01-29 06:52:36 +01:00
|
|
|
<div class="mx-auto max-w-lg p-6">
|
|
|
|
<MiscAiSign :class="mounted ? 'active' : ''" />
|
|
|
|
<div class="mt-4 text-center">How did you get here?</div>
|
2023-09-23 12:07:45 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
2023-12-22 15:53:24 +01:00
|
|
|
const localePath = useGLocalePath();
|
2024-01-29 06:52:36 +01:00
|
|
|
|
|
|
|
const mounted = ref(false);
|
|
|
|
|
|
|
|
useHead({
|
|
|
|
meta: [
|
|
|
|
{ name: 'robots', content: 'noindex' },
|
|
|
|
],
|
|
|
|
});
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
mounted.value = true;
|
|
|
|
});
|
|
|
|
|
|
|
|
onBeforeRouteLeave(() => {
|
|
|
|
mounted.value = false;
|
|
|
|
});
|
2023-09-23 12:07:45 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
</style>
|