86 lines
3.3 KiB
HTML
86 lines
3.3 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/png" href="/logo.png" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<!-- Primary Meta Tags -->
|
|
<title>K-Notes - Modern Note-Taking App | Organize Your Ideas</title>
|
|
<meta name="title" content="K-Notes - Modern Note-Taking App | Organize Your Ideas" />
|
|
<meta name="description"
|
|
content="K-Notes is a beautiful, modern note-taking application with tagging, search, archiving, and multi-language support. Keep your thoughts organized with our elegant PWA." />
|
|
<meta name="keywords"
|
|
content="notes, note-taking, productivity, organization, tags, markdown, PWA, offline, multi-language" />
|
|
<meta name="author" content="K-Notes" />
|
|
<meta name="robots" content="index, follow" />
|
|
<meta name="language" content="English" />
|
|
|
|
<!-- Open Graph / Facebook -->
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:url" content="https://knotes.gabrielkaszewski.dev/" />
|
|
<meta property="og:title" content="K-Notes - Modern Note-Taking App" />
|
|
<meta property="og:description"
|
|
content="Beautiful, modern note-taking with tagging, search, and multi-language support. Available as a Progressive Web App." />
|
|
<meta property="og:image" content="/logo.png" />
|
|
<meta property="og:site_name" content="K-Notes" />
|
|
|
|
<!-- Twitter -->
|
|
<meta property="twitter:card" content="summary" />
|
|
<meta property="twitter:url" content="https://knotes.gabrielkaszewski.dev/" />
|
|
<meta property="twitter:title" content="K-Notes - Modern Note-Taking App" />
|
|
<meta property="twitter:description"
|
|
content="Beautiful, modern note-taking with tagging, search, and multi-language support. Available as a Progressive Web App." />
|
|
<meta property="twitter:image" content="/logo.png" />
|
|
|
|
<!-- Theme Colors -->
|
|
<meta name="theme-color" content="#ffffff" media="(prefers-color-scheme: light)">
|
|
<meta name="theme-color" content="#000000" media="(prefers-color-scheme: dark)">
|
|
|
|
<!-- Apple Web App -->
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
|
<meta name="apple-mobile-web-app-title" content="K-Notes" />
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
|
|
|
<!-- Mobile Web App -->
|
|
<meta name="mobile-web-app-capable" content="yes" />
|
|
|
|
<!-- Microsoft -->
|
|
<meta name="msapplication-TileColor" content="#000000" />
|
|
<meta name="msapplication-config" content="/browserconfig.xml" />
|
|
|
|
<!-- Runtime Configuration -->
|
|
<script src="/env-config.js" onerror="window.env = {}"></script>
|
|
|
|
<!-- Structured Data -->
|
|
<script type="application/ld+json">
|
|
{
|
|
"@context": "https://schema.org",
|
|
"@type": "WebApplication",
|
|
"name": "K-Notes",
|
|
"description": "Modern note-taking application with tagging, search, and multi-language support",
|
|
"url": "https://knotes.gabrielkaszewski.dev",
|
|
"applicationCategory": "ProductivityApplication",
|
|
"operatingSystem": "Any",
|
|
"offers": {
|
|
"@type": "Offer",
|
|
"price": "0",
|
|
"priceCurrency": "USD"
|
|
},
|
|
"aggregateRating": {
|
|
"@type": "AggregateRating",
|
|
"ratingValue": "4.8",
|
|
"ratingCount": "100"
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
|
|
</html> |