-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (34 loc) · 1.94 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- SEO Meta Tags -->
<title>NASA API Explorer | Explore NASA Data</title>
<meta name="description" content="Explore NASA's public API with this React-based web application. Access space-related data including images, videos, and scientific details from NASA's archives." />
<meta name="keywords" content="NASA, space, API, data explorer, astronomy, React" />
<meta name="robots" content="index, follow" />
<meta name="author" content="Dulaj Thiwanka" />
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="NASA API Explorer" />
<meta property="og:description" content="A web app to explore NASA's public API for images, videos, and scientific data." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://nasa-api-explorer.netlify.app" />
<meta property="og:image" content="https://nasa-api-explorer.netlify.app/nasa-thumbnail.jpg" />
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="NASA API Explorer" />
<meta name="twitter:description" content="Explore NASA's public API and access space-related data." />
<meta name="twitter:image" content="https://nasa-api-explorer.netlify.app/nasa-thumbnail.jpg" />
<!-- Additional Tags for Performance and Accessibility -->
<meta name="theme-color" content="#000000" />
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<link rel="canonical" href="https://nasa-api-explorer.netlify.app" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>