-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (86 loc) ยท 3.23 KB
/
Copy pathindex.html
File metadata and controls
101 lines (86 loc) ยท 3.23 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!doctype html>
<html lang="en">
<head>
<!-- Index html -->
<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" />
<title>NASA - National Aeronautics and Space Administration</title>
<meta name="description" content="Official NASA website featuring rocket launches, space missions, astronomical discoveries, and educational resources. Explore the universe with NASA's cutting-edge technology and groundbreaking research.">
<meta name="keywords" content="NASA, space exploration, rocket launches, Mars, Moon, ISS, astronauts, space technology, STEM education, astronomy, space science">
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="NASA - National Aeronautics and Space Administration">
<meta property="og:description" content="Explore space with NASA's official website featuring rocket launches, missions, and discoveries.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://nasa.gov">
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="NASA - Space Exploration">
<meta name="twitter:description" content="Official NASA website with rocket launches and space discoveries.">
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
* {
font-family: 'Inter', sans-serif;
}
body {
margin: 0;
padding: 0;
overflow-x: hidden;
background: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 50%, #dc2626 100%);
}
.line-clamp-2 {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.line-clamp-3 {
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
/* Custom scrollbar with NASA colors */
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
background: linear-gradient(180deg, #1e3a8a, #7c3aed);
}
::-webkit-scrollbar-thumb {
background: linear-gradient(180deg, #3b82f6, #dc2626);
border-radius: 6px;
border: 2px solid #1e3a8a;
}
::-webkit-scrollbar-thumb:hover {
background: linear-gradient(180deg, #2563eb, #b91c1c);
}
/* Loading animation */
.loading-rocket {
animation: rocket-float 2s ease-in-out infinite;
}
@keyframes rocket-float {
0%, 100% { transform: translateY(0px) rotate(0deg); }
50% { transform: translateY(-20px) rotate(5deg); }
}
/* Smooth page transitions */
.page-transition {
animation: fadeInUp 0.8s ease-out;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>