diff --git a/main.go b/main.go
index 82de1c1..fbb3c17 100644
--- a/main.go
+++ b/main.go
@@ -39,7 +39,7 @@ func main() {
fs := http.FileServer(http.Dir("static"))
http.Handle("/static/", http.StripPrefix("/static/", fs))
- http.HandleFunc("GET /{$}", func(w http.ResponseWriter, r *http.Request) { http.ServeFile(w, r, "./static/index.html") })
+ http.HandleFunc("GET /{$}", func(w http.ResponseWriter, r *http.Request) { http.ServeFile(w, r, "./static/about.html") })
http.HandleFunc("GET /infra", func(w http.ResponseWriter, r *http.Request) { http.ServeFile(w, r, "./static/infra.html") })
http.HandleFunc("GET /finance", func(w http.ResponseWriter, r *http.Request) { http.ServeFile(w, r, "./static/finance.html") })
http.HandleFunc("GET /cinema", func(w http.ResponseWriter, r *http.Request) { http.ServeFile(w, r, "./static/cinema.html") })
diff --git a/site b/site
index e3aeea2..a65afc6 100755
Binary files a/site and b/site differ
diff --git a/static/about.html b/static/about.html
index 3525ed5..0dd63d6 100644
--- a/static/about.html
+++ b/static/about.html
@@ -88,10 +88,8 @@
-
-
-
+
About Me · 2026
SamanthaVero Friis
@@ -104,8 +102,7 @@
samantha42.xyz
me@samantha42.xyz
-
-
+
experience
@@ -133,7 +130,6 @@
-
education
@@ -168,7 +164,6 @@
-
opinion
@@ -179,10 +174,6 @@
infra
-
-
-
-
-
-
-
-
+
-
+
+
+
Movie/Show Top list
@@ -427,10 +421,9 @@
+
-
-
-
+
diff --git a/static/about.js b/static/about.js
index b71401d..42129b6 100644
--- a/static/about.js
+++ b/static/about.js
@@ -50,4 +50,19 @@ function closeOverlay() {
// or toggle it from anywhere:
function openOverlay() {
document.getElementById('overlay').style.display = 'flex';
-}
\ No newline at end of file
+}
+
+function InterestShow() {
+ const body = document.getElementById('interests-body');
+ const chevron = document.getElementById('interests-chevron');
+ chevron.classList.add("hidden")
+ body.classList.remove("hidden")
+ chevron.textContent = hidden ? '▶' : '▼';
+ }
+
+ function toggleInterests() {
+ const body = document.getElementById('interests-body');
+ const chevron = document.getElementById('interests-chevron');
+ const hidden = body.classList.toggle('hidden');
+ chevron.textContent = hidden ? '▶' : '▼';
+ }
\ No newline at end of file
diff --git a/static/style/styles2.css b/static/style/styles2.css
index 1e8c928..2832d56 100644
--- a/static/style/styles2.css
+++ b/static/style/styles2.css
@@ -617,4 +617,8 @@ button {
button:hover {
border:1px solid rgb(26, 87, 219);
+}
+
+.hidden {
+ display: none;
}
\ No newline at end of file