- Added comprehensive SEO meta tags in index.html for improved search engine visibility, including Open Graph and Twitter Card tags. - Created a sitemap.xml for better indexing of site tools, generated automatically via a new script (generate-sitemap.ts). - Introduced robots.txt to manage crawler access and specified sitemap location. - Updated package.json to include a build step for sitemap generation and added tsx as a dependency. - Documented SEO optimizations and usage instructions in a new SEO-README.md file.
22 lines
548 B
JSON
22 lines
548 B
JSON
{
|
|
"name": "Lite Kit - Lightweight Online Tools",
|
|
"short_name": "Lite Kit",
|
|
"description": "Free online tools including UUID generator, JSON formatter, Base64 encoder/decoder, network testing tools and more",
|
|
"start_url": "/",
|
|
"display": "standalone",
|
|
"background_color": "#000000",
|
|
"theme_color": "#000000",
|
|
"orientation": "portrait-primary",
|
|
"icons": [
|
|
{
|
|
"src": "/lite.svg",
|
|
"type": "image/svg+xml",
|
|
"sizes": "any"
|
|
}
|
|
],
|
|
"categories": ["utilities", "productivity"],
|
|
"lang": "en",
|
|
"dir": "ltr"
|
|
}
|
|
|