-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (73 loc) · 4.28 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
81
82
83
84
85
<!doctype html>
<html>
<head>
<title>Sanjeet's Homepage</title>
<meta property="og:title" content="Sanjeet's Homepage" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://spacesanjeet.me/" />
<meta property="og:image" content="https://spacesanjeet.me/images/hubble.jpg" />
<meta property="og:description" content="Welcome to my blog!" />
<meta charset = "utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="css/simple.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap" rel="stylesheet">
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
<link rel="manifest" href="favicon/site.webmanifest">
</head>
<body>
<header>
<nav>
<a href="index.html" aria-current="page">Home</a>
<a href="blog/index.html">Blog</a>
<a href="about.html">About</a>
<a href="resume.html">Resume</a>
<a href="youtube.html">YouTube</a>
</nav>
<h1>Sanjeet's Homepage</h1>
</header>
<main>
<figure>
<img src = "images/hubble.jpg" alt = "Hubble Space Telescope with Earth in the background looking out towards the universe.">
<figcaption>
Space is cool. Telescopes more so! <a href="https://unsplash.com/photos/hubble-space-telescope-above-earths-atmosphere-S3hQU-5_yjg">Image source</a>
</figcaption>
</figure>
<p class="notice">
🔔 Latest blog post: <a href="blog/2025-02-09-40-minutes.html">40 Minutes</a>: A recent set of events on an exam day left me thinking about life and people. Do read to know more.<br><br>
🔔 Currently reading: NIL
</p>
<p>
My name is Sanjeet. It was pretty evident the moment you landed here and read that clunky heading. Ha! You can navigate to know more <a href="about.html"> about me</a>, read my <a href="blog/index.html"> blog</a>, check out my <a href="resume.html"> resume</a>, or just simply listen to some <a href="youtube.html"> music</a> I have on YouTube (courtesy my good friend!).
</p>
<p>
Check out my blog archive at <a href = "https://astrosanjeet.wordpress.com/">this link</a>. Before I made this site, I solely posted on this blog for more than 5 years. And while I still post there, I call this site my home now. Feels nice!
</p>
<h2>My socials</h2>
<ul>
<li><a href = "https://mastodon.social/@spacesanjeet" rel="me">Mastodon</a></li>
<li><a href = "https://news.ycombinator.com/user?id=spacesanjeet">Hacker News</a></li>
<li><a href = "https://substack.com/@spacesanjeet">Substack</a></li>
<li><a href = "https://github.com/spacesanjeet">Github</a></li>
<li><a href = "https://x.com/SpaceSanjeet">X (Twitter)</a></li>
<li><a href = "https://instagram.com/spacesanjeet">Instagram</a></li>
</ul>
<p>
The social links above are in the order of my preference. I like fediverse! I read and consume a lot of articles and essays from Hacker News and Substack. Check out some of my <a href="https://spacesanjeet.substack.com">Substack writings</a> if you feel like it!
</p>
<p>
I have my Github as well. I don't consider myself a coder or a programmer of any sort but boast about knowing HTML and basic Python. All knowledge is valuable. I am scarcely active on X now that I have made the switch to Mastodon but I do check it once in a blue moon. And at the end, we have the famous doom scroll social media.
</p>
<p class="notice">
<strong>Want to know more about me?</strong><br> Scroll up and click on <a href = "about.html">About</a> to know more!
</p>
</main>
<footer>
<p>Made with ❤️ by Sanjeet Patel.</p>
</footer>
</body>
</html>