Skip to content

Commit ce189c9

Browse files
committed
docs: update favicon and web app manifest files
1 parent 9e7225f commit ce189c9

8 files changed

Lines changed: 9 additions & 9 deletions

File tree

docs/.vitepress/config.mts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ export default defineConfig({
77
base: '/twd/',
88
head: [
99
// Favicon and app icons
10-
['link', { rel: 'icon', href: '/twd/favicon/favicon.ico' }],
11-
['link', { rel: 'icon', type: 'image/svg+xml', href: '/twd/favicon/favicon.svg' }],
12-
['link', { rel: 'apple-touch-icon', href: '/twd/favicon/apple-touch-icon.png' }],
13-
['link', { rel: 'manifest', href: '/twd/favicon/site.webmanifest' }],
10+
['link', { rel: 'icon', href: '/twd/favicon.ico' }],
11+
['link', { rel: 'icon', type: 'image/svg+xml', href: '/twd/favicon.svg' }],
12+
['link', { rel: 'apple-touch-icon', href: '/twd/apple-touch-icon.png' }],
13+
['link', { rel: 'manifest', href: '/twd/site.webmanifest' }],
1414

1515
// SEO Meta Tags
1616
['meta', { name: 'description', content: 'TWD (Test While Developing) - In-browser testing framework for React applications with instant feedback, Mock Service Worker integration, and beautiful UI.' }],
@@ -22,7 +22,7 @@ export default defineConfig({
2222
['meta', { property: 'og:description', content: 'In-browser testing framework for React applications with instant feedback, Mock Service Worker integration, and beautiful UI. Because testing isn\'t a phase, it\'s part of the flow.' }],
2323
['meta', { property: 'og:url', content: 'https://brikev.github.io/twd/' }],
2424
['meta', { property: 'og:site_name', content: 'TWD Documentation' }],
25-
['meta', { property: 'og:image', content: 'https://brikev.github.io/twd/favicon/web-app-manifest-512x512.png' }],
25+
['meta', { property: 'og:image', content: 'https://brikev.github.io/twd/web-app-manifest-512x512.png' }],
2626
['meta', { property: 'og:image:width', content: '512' }],
2727
['meta', { property: 'og:image:height', content: '512' }],
2828
['meta', { property: 'og:image:alt', content: 'TWD - Test While Developing Logo' }],
@@ -31,7 +31,7 @@ export default defineConfig({
3131
['meta', { name: 'twitter:card', content: 'summary_large_image' }],
3232
['meta', { name: 'twitter:title', content: 'TWD - Test While Developing' }],
3333
['meta', { name: 'twitter:description', content: 'In-browser testing framework for React applications with instant feedback and beautiful UI.' }],
34-
['meta', { name: 'twitter:image', content: 'https://brikev.github.io/twd/favicon/web-app-manifest-512x512.png' }],
34+
['meta', { name: 'twitter:image', content: 'https://brikev.github.io/twd/web-app-manifest-512x512.png' }],
3535
['meta', { name: 'twitter:image:alt', content: 'TWD - Test While Developing Logo' }],
3636

3737
// Additional Meta Tags
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@
44
"description": "In-browser testing framework for React applications",
55
"icons": [
66
{
7-
"src": "/twd/favicon/web-app-manifest-192x192.png",
7+
"src": "/twd/web-app-manifest-192x192.png",
88
"sizes": "192x192",
99
"type": "image/png",
1010
"purpose": "maskable"
1111
},
1212
{
13-
"src": "/twd/favicon/web-app-manifest-512x512.png",
13+
"src": "/twd/web-app-manifest-512x512.png",
1414
"sizes": "512x512",
1515
"type": "image/png",
1616
"purpose": "maskable"
1717
},
1818
{
19-
"src": "/twd/favicon/favicon-96x96.png",
19+
"src": "/twd/favicon-96x96.png",
2020
"sizes": "96x96",
2121
"type": "image/png"
2222
}

0 commit comments

Comments
 (0)