Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ useSeoMeta({
<NuxtPage />
</NuxtLayout>

<UNotifications />
<!-- <UNotifications /> -->
</div>
</template>
11 changes: 4 additions & 7 deletions components/AppHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ const links = [{
to: '/about'
}]

const {metaSymbol} = useShortcuts()
// const {metaSymbol} = useShortcuts()
const metaSymbol = '⌘' // Fallback for shortcuts display

</script>

Expand All @@ -43,12 +44,8 @@ const {metaSymbol} = useShortcuts()
</template>

<template #right>
<UTooltip text="Search" :shortcuts="[metaSymbol, 'K']">
<UContentSearchButton size="xl" label=""/>
</UTooltip>
<UTooltip :text="$colorMode.preference === 'dark' ? 'Switch to light mode' : 'Switch to dark mode'">
<UColorModeButton size="xl"/>
</UTooltip>
<!-- <UContentSearchButton size="xl" label=""/> -->
<!-- <UColorModeButton size="xl"/> -->
</template>

<template #panel>
Expand Down
2 changes: 1 addition & 1 deletion nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
extends: [process.env.NUXT_UI_PRO_PATH || '@nuxt/ui-pro'],
experimental: {
viewTransition: true
},
modules: [
'@nuxt/content',
'@nuxt/image',
'@nuxt/ui',
'@nuxt/ui-pro',
'@nuxt/fonts',
'@nuxthq/studio',
'@vueuse/nuxt',
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"@nuxt/content": "^2.13.4",
"@nuxt/fonts": "^0.11.2",
"@nuxt/image": "^1.10.0",
"@nuxt/ui-pro": "^1.8.0",
"@nuxt/ui-pro": "^3.2.0",
"@nuxtjs/mdc": "^0.17.0",
"@vueuse/nuxt": "^11.3.0",
"feed": "^4.2.2",
Expand All @@ -39,7 +39,7 @@
"@nuxtjs/seo": "3.0.3",
"@stefanobartoletti/nuxt-social-share": "^1.2.2",
"eslint": "^9.25.1",
"nuxt": "^3.16.2",
"nuxt": "^3.17.7",
"typescript": "^5.8.3",
"vue-tsc": "^2.2.10"
},
Expand Down
Loading