-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (65 loc) · 3.82 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Netra - Multi-Platform Search Assistant</title>
<meta name="description" content="Netra streamlines your search experience by generating links to multiple search engines and apps with a single query, helping you access information quickly and effortlessly.">
<meta name="keywords" content="multi-platform search, search assistant, search links, information aggregator, Netra, search tools, web app">
<meta name="author" content="Nikhil Sharma">
<link rel="canonical" href="https://nikhil-sha.github.io/Netra/">
<!-- Open Graph tags for social sharing -->
<meta property="og:title" content="Netra - Multi-Platform Search Assistant">
<meta property="og:description" content="Effortlessly search across multiple platforms and apps with Netra, your streamlined search assistant.">
<meta property="og:url" content="https://nikhil-sha.github.io/Netra/">
<meta property="og:type" content="website">
<meta property="og:image" content="https://nikhil-sha.github.io/Netra/public/assets/open-graph-image.jpg">
<meta property="og:locale" content="en_US">
<meta property="og:site_name" content="Netra">
<!-- Twitter Card tags for better Twitter sharing -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Netra - Multi-Platform Search Assistant">
<meta name="twitter:description" content="Netra helps you search across multiple engines and apps with ease.">
<meta name="twitter:image" content="https://nikhil-sha.github.io/Netra/public/assets/open-graph-image.jpg">
<meta name="twitter:site" content="@YourTwitterHandle"> <!-- Your Twitter handle if available -->
<meta name="twitter:creator" content="@Nikhil_Sharma"> <!-- Your personal Twitter handle if available -->
<!-- Web App Meta Tags -->
<link rel="manifest" href="/Netra/public/manifest.json"> <!-- Link to manifest for PWA support -->
<meta name="application-name" content="Netra">
<meta name="apple-mobile-web-app-title" content="Netra">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="mobile-web-app-capable" content="yes">
<!-- Robots tag for better SEO -->
<meta name="robots" content="index, follow">
<!-- Favicon -->
<link rel="icon" href="https://nikhil-sha.github.io/Netra/public/assets/icons/icon-512x512.png" type="image/png">
<link rel="apple-touch-icon" href="https://nikhil-sha.github.io/Netra/public/assets/iocns/icon-192x192.png">
<!-- Theme Color for Mobile Browsers -->
<meta name="theme-color" content="#3B82F6">
<!-- React -->
<script src="//unpkg.com/systemjs@0.19.47/dist/system.js"></script>
<!-- Tailwind -->
<script src="https://cdn.tailwindcss.com/"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap" rel="stylesheet">
</head>
<body class="font-[Quicksand] font-medium bg-gray-100">
<div id="react-app">
<!-- loading -->
<div class="text-center text-gray-800 h-dvh flex flex-col justify-center items-center">
<h1 class="text-4xl font-black">नेत्र</h1>
<p class="text-md mt-2 text-gray-500">Making search simpler</p>
<div class="mt-6 flex justify-center">
<span class="relative flex h-4 w-4">
<span class="animate-ping absolute inline-flex h-full w-full rounded-full bg-sky-400 opacity-75"></span>
<span class="relative inline-flex rounded-full h-4 w-4 bg-sky-500"></span>
</span>
</div>
<p class="text-sm mt-6 text-gray-400">Please wait...</p>
</div>
</div>
<script src="/Netra/src/config/config.js"></script>
</body>
</html>