@minch/bentolio 0.9.4 → 0.9.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/app/app.vue CHANGED
@@ -56,18 +56,16 @@
56
56
  description: bio.text,
57
57
  ogTitle: `${name} · ${subtitle}`,
58
58
  ogDescription: bio.text,
59
- ogImage: customOgImage,
60
- twitterImage: customOgImage,
59
+ ogImage: () => customOgImage ?? "",
60
+ twitterImage: () => customOgImage ?? "",
61
61
  twitterCard: "summary_large_image"
62
62
  });
63
63
 
64
- if (!customOgImage) {
65
- defineOgImageComponent("SocialImage", {
66
- name: name,
67
- subtitle: subtitle,
68
- avatar: avatar
69
- });
70
- }
64
+ defineOgImageComponent("SocialImage", {
65
+ name: name,
66
+ subtitle: subtitle,
67
+ avatar: avatar
68
+ });
71
69
  </script>
72
70
 
73
71
  <template>
@@ -19,14 +19,8 @@
19
19
  ]"
20
20
  @click="onClick">
21
21
  <ColorScheme placeholder="...">
22
- <template v-if="colorMode.value === 'dark'">
23
- <Icon name="ph:sun-duotone" class="w-5 h-5" />
24
- <span class="sr-only">Dark Mode</span>
25
- </template>
26
- <template v-else>
27
- <Icon name="ph:moon-duotone" class="w-5 h-5" />
28
- <span class="sr-only">Light Mode</span>
29
- </template>
22
+ <Icon v-if="colorMode.preference === 'dark'" name="ph:sun-duotone" />
23
+ <Icon v-else name="ph:moon-duotone" />
30
24
  </ColorScheme>
31
25
  </button>
32
26
  </template>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@minch/bentolio",
3
- "version": "0.9.4",
3
+ "version": "0.9.6",
4
4
  "description": "A minimal portfolio template and layer built with Nuxt 4, Tailwind CSS 4, and GSAP.",
5
5
  "type": "module",
6
6
  "repository": {
@@ -36,19 +36,19 @@
36
36
  "dependencies": {
37
37
  "@fontsource/space-grotesk": "^5.2.8",
38
38
  "@iconify-json/ph": "^1.2.2",
39
- "@iconify-json/simple-icons": "^1.2.47",
39
+ "@iconify-json/simple-icons": "^1.2.48",
40
40
  "@nuxt/eslint": "1.8.0",
41
41
  "@nuxt/icon": "2.0.0",
42
42
  "@nuxtjs/color-mode": "^3.5.2",
43
- "@tailwindcss/vite": "^4.1.11",
43
+ "@tailwindcss/vite": "^4.1.12",
44
44
  "@unhead/vue": "^2.0.14",
45
- "eslint": "^9.33.0",
45
+ "eslint": "^9.34.0",
46
46
  "gsap": "^3.13.0",
47
47
  "nuxt": "^4.0.3",
48
48
  "nuxt-og-image": "5.1.9",
49
- "tailwindcss": "^4.1.11",
50
- "unstorage": "^1.16.1",
51
- "vue": "^3.5.18",
49
+ "tailwindcss": "^4.1.12",
50
+ "unstorage": "^1.17.0",
51
+ "vue": "^3.5.19",
52
52
  "vue-router": "^4.5.1"
53
53
  },
54
54
  "scripts": {
@@ -0,0 +1,6 @@
1
+ <svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M181 0H75C33.5786 0 0 33.5786 0 75V181C0 222.421 33.5786 256 75 256H181C222.421 256 256 222.421 256 181V75C256 33.5786 222.421 0 181 0Z" fill="#020617"/>
3
+ <rect x="62" y="63" width="58" height="131" rx="20" fill="#D9D9D9"/>
4
+ <rect x="135" y="63" width="58" height="58" rx="20" fill="#D9D9D9"/>
5
+ <rect x="135" y="136" width="58" height="58" rx="20" fill="#D9D9D9"/>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M181 0H75C33.5786 0 0 33.5786 0 75V181C0 222.421 33.5786 256 75 256H181C222.421 256 256 222.421 256 181V75C256 33.5786 222.421 0 181 0Z" fill="#020617"/>
3
+ <rect x="62" y="63" width="58" height="131" rx="20" fill="#D9D9D9"/>
4
+ <rect x="135" y="63" width="58" height="58" rx="20" fill="#D9D9D9"/>
5
+ <rect x="135" y="136" width="58" height="58" rx="20" fill="#D9D9D9"/>
6
+ </svg>