Skip to content
Merged
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
1 change: 1 addition & 0 deletions components/Meta.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ const Meta = (props: MetaProps) => {
{props.keywords && <meta name="keywords" content={props.keywords} />}
{props.author && <meta name="author" content={props.author} />}
{props.ogUrl && <meta property="og:url" content={props.ogUrl} />}
<link rel="manifest" href="../manifest.json" />
Copy link

Copilot AI Jul 31, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The manifest path '../manifest.json' is incorrect. Since the manifest is in the public directory, it should be '/manifest.json' to reference it from the root of the public folder.

Suggested change
<link rel="manifest" href="../manifest.json" />
<link rel="manifest" href="/manifest.json" />

Copilot uses AI. Check for mistakes.
</Head>
);
};
Expand Down
Binary file added public/icons/144x144.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/256x256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/48x48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/96x96.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
173 changes: 173 additions & 0 deletions public/icons/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
50 changes: 50 additions & 0 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"name": "Jam.dev Utilities",
"short_name": "DevUtilities",
"background_color": "#FFFFFF",
"categories": ["developer tools", "development", "utilities", "productivity"],
"description": "Jam exists to make developers lives easier. Here are fast, free, open source, ad-free tools.",
"display": "standalone",
"id": "/utilities",
"lang": "en",
"start_url": "/utilities",
"theme_color": "#ffffff",
"icons": [
{
"src": "icons/icon.svg",
"type": "image/svg+xml",
"sizes": "512x512",
"purpose": "any maskable"
},
{
"src": "icons/512x512.png",
"type": "image/png",
"sizes": "512x512",
"purpose": "any maskable"
},
{
"src": "icons/256x256.png",
"type": "image/png",
"sizes": "256x256",
"purpose": "any maskable"
},
{
"src": "icons/144x144.png",
"type": "image/png",
"sizes": "144x144",
"purpose": "any maskable"
},
{
"src": "icons/96x96.png",
"type": "image/png",
"sizes": "96x96",
"purpose": "any maskable"
},
{
"src": "icons/48x48.png",
"type": "image/png",
"sizes": "48x48",
"purpose": "any maskable"
}
]
}