21 lines
435 B
Vue
21 lines
435 B
Vue
<script setup>
|
|
useSeoMeta({
|
|
title: "CORRAD UI 2025",
|
|
description: "Modern UI components for CORRAD",
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<NuxtLoadingIndicator />
|
|
<NuxtLayout>
|
|
<NuxtPage />
|
|
</NuxtLayout>
|
|
<!-- Toast containers for all positions -->
|
|
<Toast position="top-left" />
|
|
<Toast position="top-right" />
|
|
<Toast position="bottom-left" />
|
|
<Toast position="bottom-right" />
|
|
</div>
|
|
</template>
|