mirror of
https://github.com/modrinth/code.git
synced 2026-08-26 01:26:23 +00:00
* feat: implement custom popup * feat: add privacy setting * style fixes * more style fixes * feat: implement notification panel changes and better popup in website * feat: update popup button * fix: remove unnecessary modal props * fixes * pnpm prepr * remove devtools opening * update query to find buttons * update copy * update copy * fix: manage permissions depends on showAds booleans instead of managemetn availability
24 lines
559 B
Vue
24 lines
559 B
Vue
<template>
|
|
<NuxtLayout>
|
|
<NuxtRouteAnnouncer />
|
|
<ClientOnly>
|
|
<LoadingBar />
|
|
</ClientOnly>
|
|
<NotificationPanel />
|
|
<AdsConsentNotification />
|
|
<I18nDebugPanel />
|
|
<NuxtPage />
|
|
</NuxtLayout>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import { I18nDebugPanel, LoadingBar, NotificationPanel } from '@modrinth/ui'
|
|
|
|
import AdsConsentNotification from '~/components/ui/AdsConsentNotification.vue'
|
|
import { setupProviders } from '~/providers/setup.ts'
|
|
|
|
import { useAuth } from './composables/auth'
|
|
|
|
const auth = await useAuth()
|
|
setupProviders(auth)
|
|
</script>
|