16 lines
741 B
Vue
16 lines
741 B
Vue
<template>
|
|
<div class="w-full px-4 sm:px-6 lg:px-8 xl:px-12 2xl:px-16 py-8 space-y-6">
|
|
<PWAInstallPrompt auto-show />
|
|
<!-- TODO: Implement push notifications properly - currently commenting out admin notifications dialog -->
|
|
<!-- <NotificationPermission auto-show /> -->
|
|
<NostrFeed feed-type="announcements" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
// NostrFeed is now registered globally by the nostr-feed module
|
|
// No need to import it directly - use the modular version
|
|
// TODO: Re-enable when push notifications are properly implemented
|
|
// import NotificationPermission from '@/components/notifications/NotificationPermission.vue'
|
|
import PWAInstallPrompt from '@/components/pwa/PWAInstallPrompt.vue'
|
|
</script>
|