Files
nexus-terminal/packages/frontend/src/views/NotificationsView.vue
T
Baobhan Sith c11823e7e0 update
2025-04-23 16:25:48 +08:00

17 lines
508 B
Vue

<template>
<div class="p-4 bg-background text-foreground"> <!-- Outer container with padding -->
<div class="max-w-6xl mx-auto"> <!-- Inner container for max-width and centering -->
<!-- Removed temporary h1 title -->
<NotificationSettings />
</div>
</div>
</template>
<script setup lang="ts">
import NotificationSettings from '../components/NotificationSettings.vue';
</script>
<style scoped>
/* Remove scoped styles as they are now handled by Tailwind utility classes */
</style>