From cb62ce0ecc308110cc4ca5cf174d4f6e247c6246 Mon Sep 17 00:00:00 2001 From: Reza-2029 Date: Sun, 5 Oct 2025 15:37:33 -0400 Subject: [PATCH 1/3] test commit --- startups.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/startups.html b/startups.html index 07088e9..21c132d 100644 --- a/startups.html +++ b/startups.html @@ -147,7 +147,7 @@

Contact

infoDiv.appendChild(a); card.appendChild(infoDiv); - container.appendChild(card); + container.appendChild(card); // :) }); }); From 8d638f9ab9e407275deb5c1889351a49ee276477 Mon Sep 17 00:00:00 2001 From: Reza-2029 Date: Sun, 19 Oct 2025 14:45:43 -0400 Subject: [PATCH 2/3] add links to the projects --- startups.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/startups.html b/startups.html index 21c132d..f603f25 100644 --- a/startups.html +++ b/startups.html @@ -146,8 +146,14 @@

Contact

a.textContent = startup.github_text; infoDiv.appendChild(a); + const a2 = document.createElement('a'); + a2.href = startup.test_url; + a2.textContent = startup.test_text; + infoDiv.appendChild(document.createElement('br')); + infoDiv.appendChild(a2); + card.appendChild(infoDiv); - container.appendChild(card); // :) + container.appendChild(card); }); }); From b83c45ad50804ddf13acad60ae6ff3ed6dc03ee9 Mon Sep 17 00:00:00 2001 From: Reza-2029 Date: Sun, 19 Oct 2025 15:35:57 -0400 Subject: [PATCH 3/3] added styles to project links --- css/style.css | 7 +++++++ startups.html | 1 + 2 files changed, 8 insertions(+) diff --git a/css/style.css b/css/style.css index 0a55622..bcce67b 100644 --- a/css/style.css +++ b/css/style.css @@ -12,6 +12,7 @@ --text-color: #000000; --accent-color: #F8E0C9; --font-family: 'Inter', sans-serif; + --mammoth-purple: #3F1F69; } html, body { @@ -230,6 +231,12 @@ header { color: var(--secondary-color); } +.index-card a.secondary-link { + color: var(--mammoth-purple); +} + + + /* Startup link styles */ .startup-link { display: inline-block; diff --git a/startups.html b/startups.html index f603f25..57c4542 100644 --- a/startups.html +++ b/startups.html @@ -149,6 +149,7 @@

Contact

const a2 = document.createElement('a'); a2.href = startup.test_url; a2.textContent = startup.test_text; + a2.className = 'secondary-link'; infoDiv.appendChild(document.createElement('br')); infoDiv.appendChild(a2);