- Added DNS prefetch and preconnect links in index.html for improved API loading times. - Implemented lazy loading for tool components to optimize performance and reduce initial load time. - Wrapped tool components in Suspense with a loading fallback to enhance user experience during loading. - Refactored Vite configuration to create manual chunks for better code splitting of React and UI libraries.
64 lines
2.7 KiB
HTML
64 lines
2.7 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<!-- Primary Meta Tags -->
|
|
<title>Lite Kit - Lightweight Online Tools</title>
|
|
<meta name="description" content="Free online tools including UUID generator, JSON formatter, Base64 encoder/decoder, network testing tools and more. Fast, secure, and easy to use." />
|
|
<meta name="keywords" content="online tools,UUID generator,JSON formatter,Base64 encoder,network tools,DNS lookup,Ping test,TCPing,speed test,IP query" />
|
|
<meta name="author" content="Lite Kit" />
|
|
<meta name="theme-color" content="#000000" />
|
|
|
|
<!-- Favicon -->
|
|
<link rel="icon" type="image/svg+xml" href="/lite.svg" />
|
|
|
|
<!-- DNS Prefetch & Preconnect for external APIs -->
|
|
<link rel="dns-prefetch" href="https://ipinfo.io">
|
|
<link rel="preconnect" href="https://ipinfo.io" crossorigin>
|
|
|
|
<!-- Open Graph / Facebook -->
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:url" content="https://litek.typist.cc/" />
|
|
<meta property="og:title" content="Lite Kit - Lightweight Online Tools" />
|
|
<meta property="og:description" content="Free online tools including UUID generator, JSON formatter, Base64 encoder/decoder, network testing tools and more." />
|
|
<meta property="og:image" content="https://litek.typist.cc/lite.svg" />
|
|
<meta property="og:site_name" content="Lite Kit" />
|
|
|
|
<!-- Twitter Card -->
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
<meta name="twitter:title" content="Lite Kit - Lightweight Online Tools" />
|
|
<meta name="twitter:description" content="Free online tools including UUID generator, JSON formatter, Base64 encoder/decoder, network testing tools and more." />
|
|
<meta name="twitter:image" content="https://litek.typist.cc/lite.svg" />
|
|
|
|
<!-- PWA Manifest -->
|
|
<link rel="manifest" href="/manifest.json" />
|
|
|
|
<!-- Structured Data (JSON-LD) -->
|
|
<script type="application/ld+json">
|
|
{
|
|
"@context": "https://schema.org",
|
|
"@type": "WebSite",
|
|
"name": "Lite Kit",
|
|
"description": "Free online tools including UUID generator, JSON formatter, Base64 encoder/decoder, network testing tools and more",
|
|
"url": "https://litek.typist.cc/",
|
|
"author": {
|
|
"@type": "Organization",
|
|
"name": "Lite Kit"
|
|
},
|
|
"applicationCategory": "UtilitiesApplication",
|
|
"offers": {
|
|
"@type": "Offer",
|
|
"price": "0",
|
|
"priceCurrency": "USD"
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|