diff --git a/.gitignore b/.gitignore
index 0d0fcb7..20ade67 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,7 @@
+messages.txt
+nohup.out
+*.out
+
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
diff --git a/CNAME b/CNAME
new file mode 100644
index 0000000..85cebdb
--- /dev/null
+++ b/CNAME
@@ -0,0 +1 @@
+aaryab.in
\ No newline at end of file
diff --git a/app.py b/app.py
deleted file mode 100644
index 975abee..0000000
--- a/app.py
+++ /dev/null
@@ -1,8 +0,0 @@
-import flask
-import requests
-
-app = flask.Flask(__name__)
-
-@app.route("/", methods=["GET"])
-def GET_index():
- return flask.render_template("index.html")
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..def2914
--- /dev/null
+++ b/index.html
@@ -0,0 +1,105 @@
+
+
+
+
+
Aarya Bhatia
+
+
+
+
+
Introduction
+
+
I am a student pursuing a Bachelor's degree in Applied Mathematics
+ and Computer Science from the University of Illinois, at
+ Urbana-Champaign. I grew up in India and came to the US in 2020 for
+ studies. I will graduate in May 2024 and work full-time as a software
+ developer.
+
+
Skills
+
+
I am experienced in full-stack web development and systems
+ programming. I am proficient in Linux and C/C++, Python, Javascript
+ and SQL languages. I have worked with several web frameworks like
+ Node.js, Flask.py and Rails. I love problem-solving and being the
+ most efficient version of myself. My workflow uses neovim, tmux and
+ i3 on Arch linux.
+
+
Work Experience
+
+
I have done internships at multiple companies and startups. I
+ initially worked as a web developer at Aspire where I built a custom
+ Node website for an online assessment form. I also worked in a DevOps
+ role at an AI startup where I built a Grafana dashboard for
+ monitoring server health. I most recently worked at Amazon, where I
+ worked in the Goodreads team in San Francisco. Presently, I am a
+ course assistant at my university for CS340, where we teach about
+ computer systems and C programming.
+
+
Hobbies
+
+
I am a trained musician with my primary instrument being the
+ electric guitar. I have been playing guitar for over a decade. For
+ fun, I enjoy playing sports like badminton and hiking.
+
+
+
+
Contact Me
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/static/favicon/icons8-console-material-sharp-16.png b/static/favicon/icons8-console-material-sharp-16.png
new file mode 100644
index 0000000..f28392a
Binary files /dev/null and b/static/favicon/icons8-console-material-sharp-16.png differ
diff --git a/static/favicon/icons8-console-material-sharp-32.png b/static/favicon/icons8-console-material-sharp-32.png
new file mode 100644
index 0000000..4b6d3a2
Binary files /dev/null and b/static/favicon/icons8-console-material-sharp-32.png differ
diff --git a/static/favicon/icons8-console-material-sharp-96.png b/static/favicon/icons8-console-material-sharp-96.png
new file mode 100644
index 0000000..e45f13d
Binary files /dev/null and b/static/favicon/icons8-console-material-sharp-96.png differ
diff --git a/static/index.css b/static/index.css
new file mode 100644
index 0000000..69150b6
--- /dev/null
+++ b/static/index.css
@@ -0,0 +1,53 @@
+@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
+
+:root {
+ --color-pale-blue-lily: #cfecec;
+ --color-red-gold: #eb5406;
+ --color-night: #0c090a;
+ --color-dark-slate: #2B3856;
+ --color-bright-teal: #01F9C6;
+}
+
+body {
+ background-color: var(--color-night);
+ color: var(--color-pale-blue-lily);
+ font-family: 'Source Code Pro', monospace;
+}
+
+h1,h2,h3,h4,h5,h6 {
+ font-family: 'Open Sans', sans-serif;
+ color: var(--color-red-gold);
+}
+
+h1 {
+ /* color: var(--color-bright-teal); */
+ color: var(--color-pale-blue-lily);
+ font-size: 3rem;
+}
+
+h4 {
+ letter-spacing: 0.05em;
+ color: var(--color-red-gold);
+}
+
+a {
+ color: var(--color-bright-teal);
+}
+
+#nav a {
+ text-decoration: none;
+}
+
+#nav a:hover {
+ color: white;
+}
+
+#social a {
+ font-size: 1.5rem;
+ text-decoration: none;
+ color: gray;
+}
+
+#social a:hover {
+ color: var(--color-bright-teal);
+}
diff --git a/static/photo.png b/static/photo.png
new file mode 100644
index 0000000..1400716
Binary files /dev/null and b/static/photo.png differ
diff --git a/templates/index.html b/templates/index.html
deleted file mode 100644
index f6eca21..0000000
--- a/templates/index.html
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-