diff --git a/assets/css/style.css b/assets/css/style.css
index 8df3e96..597f2f3 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -1,11 +1,13 @@
/* --- Global Styles & Variables --- */
-/* --- Local Font Declarations --- */
+/* --- Optimized Font Declarations --- */
@font-face {
font-family: 'Satoshi';
src: url('/fonts/Satoshi-Regular.otf') format('opentype');
font-weight: 400;
font-style: normal;
font-display: swap;
+ font-preload: true;
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
@@ -14,6 +16,40 @@
font-weight: 100 900;
font-style: normal;
font-display: swap;
+ font-preload: true;
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
+}
+
+/* Font loading optimization */
+.fonts-loaded body {
+ font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
+}
+
+.fonts-loaded .hero-headline,
+.fonts-loaded .logo {
+ font-family: 'Unbounded', sans-serif;
+}
+
+/* Loading state management */
+body.loading {
+ opacity: 0.99;
+}
+
+body.loaded {
+ opacity: 1;
+ transition: opacity 0.2s ease;
+}
+
+/* Prevent layout shifts during loading */
+.loading .hero-headline,
+.loading .post-item {
+ opacity: 0.8;
+}
+
+.loaded .hero-headline,
+.loaded .post-item {
+ opacity: 1;
+ transition: opacity 0.3s ease;
}
:root {
@@ -283,9 +319,16 @@ a {
padding: 80px 0;
}
+.hero-arrow {
+ margin-top: 20px;
+ text-align: center;
+}
+
+
+
.hero-headline {
font-family: 'Unbounded', sans-serif;
- font-size: 5rem; /* Adjust as needed */
+ font-size: 4.2rem; /* Adjusted for 2-line layout */
line-height: 1.1;
text-transform: uppercase;
margin: 0;
@@ -295,8 +338,8 @@ a {
/* --- Interactive Elements (CSS Version) --- */
.interactive-o {
display: inline-block;
- width: 1em;
- height: 0.4em;
+ width: 1.5em;
+ height: 0.6em;
background: linear-gradient(120deg, var(--accent-color-yellow), var(--accent-color-blue));
border-radius: 50px;
vertical-align: middle;
@@ -306,15 +349,15 @@ a {
}
.interactive-arrow {
- display: inline-block;
- width: 0.8em;
- height: 0.8em;
- background: linear-gradient(160deg, var(--accent-color-blue), #6DD5FA);
- clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 50% 100%, 0% 50%);
- vertical-align: middle;
- position: relative;
- top: 0.1em;
- margin-left: -0.2em;
+ display: inline-block !important;
+ width: 2.5em !important;
+ height: 2.5em !important;
+ background: linear-gradient(160deg, var(--accent-color-blue), #6DD5FA) !important;
+ clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 50% 100%, 0% 50%) !important;
+ vertical-align: middle !important;
+ position: relative !important;
+ top: 0.1em !important;
+ margin-left: -0.2em !important;
}
/* --- Post List (For later) --- */
diff --git a/assets/js/main.js b/assets/js/main.js
index 037ad80..e011df2 100644
--- a/assets/js/main.js
+++ b/assets/js/main.js
@@ -60,11 +60,21 @@
function optimizeFontLoading() {
if ('fonts' in document) {
Promise.all([
- document.fonts.load('400 1em Inter'),
- document.fonts.load('700 1em Unbounded')
+ document.fonts.load('400 1em Satoshi'),
+ document.fonts.load('700 1em Unbounded'),
+ document.fonts.load('400 1em "Unbounded"'),
+ document.fonts.load('700 1em "Unbounded"')
]).then(() => {
document.documentElement.classList.add('fonts-loaded');
+ }).catch(() => {
+ // Fallback if font loading fails
+ document.documentElement.classList.add('fonts-loaded');
});
+ } else {
+ // Fallback for browsers without Font Loading API
+ setTimeout(() => {
+ document.documentElement.classList.add('fonts-loaded');
+ }, 100);
}
}
@@ -88,8 +98,27 @@
});
}
- // Performance: Add loading states
+ // Performance: Add loading states and prevent layout shifts
function initLoadingStates() {
+ // Add loading class to body initially
+ document.body.classList.add('loading');
+
+ // Remove loading class after critical resources are loaded
+ window.addEventListener('load', () => {
+ setTimeout(() => {
+ document.body.classList.remove('loading');
+ document.body.classList.add('loaded');
+ }, 100);
+ });
+
+ // Fallback if load event doesn't fire
+ setTimeout(() => {
+ if (document.body.classList.contains('loading')) {
+ document.body.classList.remove('loading');
+ document.body.classList.add('loaded');
+ }
+ }, 3000);
+
const elements = document.querySelectorAll('.hero-headline, .post-item');
elements.forEach(element => {
element.classList.add('loading');
diff --git a/hugo_stats.json b/hugo_stats.json
index 2b1bbd1..fff9c7c 100644
--- a/hugo_stats.json
+++ b/hugo_stats.json
@@ -25,7 +25,6 @@
"main",
"meta",
"nav",
- "noscript",
"ol",
"p",
"picture",
@@ -49,6 +48,7 @@
"author-bio",
"container",
"content",
+ "hero-arrow",
"hero-headline",
"hero-section",
"interactive-arrow",
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index ff5a92c..aa0f808 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -1,27 +1,31 @@
+
+
+
{{ partial "head-seo.html" . }}
-
+
{{ $style := resources.Get "css/style.css" | resources.Minify | resources.Fingerprint }}
-
diff --git a/layouts/partials/head-seo.html b/layouts/partials/head-seo.html
index 0a9f482..ce64533 100644
--- a/layouts/partials/head-seo.html
+++ b/layouts/partials/head-seo.html
@@ -128,20 +128,229 @@
+
+
+
-
+
diff --git a/public/.DS_Store b/public/.DS_Store
deleted file mode 100644
index 035545b..0000000
Binary files a/public/.DS_Store and /dev/null differ
diff --git a/public/categories/design/index.html b/public/categories/design/index.html
index 3f1ea13..df97104 100644
--- a/public/categories/design/index.html
+++ b/public/categories/design/index.html
@@ -1,158 +1,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Design
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- THE ONLY BLOGS YOU
- WOULD LOVE TO READ
-
-
-
-
-
-
-
- August 3, 2025
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
Design THE ONLY BLOGS YOU WOULD LOVE TO READ
\ No newline at end of file
diff --git a/public/categories/design/index.xml b/public/categories/design/index.xml
index 52de285..6fe87c3 100644
--- a/public/categories/design/index.xml
+++ b/public/categories/design/index.xml
@@ -1,19 +1,12 @@
-
-
-
- Design on IDEA LABS
- http://localhost:1313/categories/design/
- Recent content in Design on IDEA LABS
- Hugo
- en-us
- Sun, 03 Aug 2025 10:16:03 +0530
-
- -
-
Stop Oversharing With AI: Your Deepest Secrets Don’t Belong on Google
- http://localhost:1313/posts/you_shouldnt_share/
- Sun, 03 Aug 2025 10:30:00 +0530
- http://localhost:1313/posts/you_shouldnt_share/
- <figure class="responsive-image" style="margin: 2rem 0; text-align: center;">
<picture>
<source media="(max-width: 600px)" srcset="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_c5767b00466e87ed.jpg">
<source media="(max-width: 900px)" srcset="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_7e6d6f0efacf03f2.jpg">
<img src="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_6be122ebd9c97e86.jpg"
alt="Chat bubbles spilling out from a phone into a search bar"
loading="lazy"
style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);">
</picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">Your secrets? Yep, they’re not as private as you think.</figcaption></figure>
<h2 id="you-should-never-share-anything-personal-with-chatgpt">You Should Never Share Anything Personal With ChatGPT</h2>
<p>So folks, welcome to another episode of <em>Nischal vs. the AI Apocalypse</em>.<br>
This one’s spicy because, yeah, <strong>people are spilling their hearts to ChatGPT</strong> like it’s their BFF therapist—and turns out, it’s basically shouting that to the internet.</p>
-
-
-
+
Design on IDEA LABS https://blog.nischalskanda.tech/categories/design/Recent content in Design on IDEA LABS Hugo en-us Mon, 04 Aug 2025 19:26:28 +0530 Stop Oversharing With AI: Your Deepest Secrets Don’t Belong on Google https://blog.nischalskanda.tech/posts/you_shouldnt_share/Sun, 03 Aug 2025 10:30:00 +0530 https://blog.nischalskanda.tech/posts/you_shouldnt_share/ <figure class="responsive-image" style="margin: 2rem 0; text-align: center;">
+ <picture>
+ <source media="(max-width: 600px)" srcset="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_c5767b00466e87ed.jpg">
+ <source media="(max-width: 900px)" srcset="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_7e6d6f0efacf03f2.jpg">
+ <img src="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_6be122ebd9c97e86.jpg"
+ alt="Chat bubbles spilling out from a phone into a search bar"
+ loading="lazy"
+ style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);">
+ </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">Your secrets? Yep, they’re not as private as you think.</figcaption></figure>
+<h2 id="you-should-never-share-anything-personal-with-chatgpt">You Should Never Share Anything Personal With ChatGPT</h2>
+<p>So folks, welcome to another episode of <em>Nischal vs. the AI Apocalypse</em>.<br>
+This one’s spicy because, yeah, <strong>people are spilling their hearts to ChatGPT</strong> like it’s their BFF therapist—and turns out, it’s basically shouting that to the internet.</p>
\ No newline at end of file
diff --git a/public/categories/design/page/1/index.html b/public/categories/design/page/1/index.html
index 1e5c8d7..b131c11 100644
--- a/public/categories/design/page/1/index.html
+++ b/public/categories/design/page/1/index.html
@@ -1,10 +1 @@
-
-
-
-
http://localhost:1313/categories/design/
-
-
-
-
-
-
+
https://blog.nischalskanda.tech/categories/design/
\ No newline at end of file
diff --git a/public/categories/health/index.html b/public/categories/health/index.html
index 775b00d..93d535d 100644
--- a/public/categories/health/index.html
+++ b/public/categories/health/index.html
@@ -1,158 +1,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Health
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- THE ONLY BLOGS YOU
- WOULD LOVE TO READ
-
-
-
-
-
-
-
- July 27, 2025
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
Health THE ONLY BLOGS YOU WOULD LOVE TO READ
\ No newline at end of file
diff --git a/public/categories/health/index.xml b/public/categories/health/index.xml
index a9efdf8..40dee34 100644
--- a/public/categories/health/index.xml
+++ b/public/categories/health/index.xml
@@ -1,19 +1,11 @@
-
-
-
- Health on IDEA LABS
- http://localhost:1313/categories/health/
- Recent content in Health on IDEA LABS
- Hugo
- en-us
- Mon, 28 Jul 2025 20:30:07 +0530
-
- -
-
Help! AI’s Turning Our Brains to Goo, and We’re Too Busy Swiping to Notice
- http://localhost:1313/posts/ai_brain_impact/
- Sun, 27 Jul 2025 08:30:00 +0530
- http://localhost:1313/posts/ai_brain_impact/
- <figure class="responsive-image" style="margin: 2rem 0; text-align: center;">
<picture>
<source media="(max-width: 600px)" srcset="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_ab31e9d5f0809e96.jpg">
<source media="(max-width: 900px)" srcset="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_cb6c4cdcbfe612fe.jpg">
<img src="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_d3c0185f2b13abea.jpg"
alt="A cartoon brain melting into a puddle with a smartphone glowing nearby"
loading="lazy"
style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);">
</picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">My brain’s legit goo while I’m vibing on Reels, bruh</figcaption></figure>
<h2 id="introduction">Introduction</h2>
<p>Hey peeps!, So picture this: I’m a 21-year-old B.Tech grad, fresh out of a Tier-2 college nobody cares about, and I basically owe my degree to ChatGPT for saving my ass on coding assignments and vivas. But, my brain’s turning into soggy sambar, and I’m too busy scrolling Reels to notice. Absolutely insaneeee, right? MIT’s Media Lab and other nerdy studies are yelling that AI’s torching our thinking, memory, and hustle. I’m not about to let my brain become a dead WhatsApp group, though. This blog, backed by research up to July 21, 2025, is my unfiltered Gen Z rant about our brain-drain drama and some lit fixes to keep our minds from crashing. So let’s vibe with our stupidity, and let’s save our brains, bruv.</p>
-
-
-
+
Health on IDEA LABS https://blog.nischalskanda.tech/categories/health/Recent content in Health on IDEA LABS Hugo en-us Mon, 28 Jul 2025 20:30:07 +0530 Help! AI’s Turning Our Brains to Goo, and We’re Too Busy Swiping to Notice https://blog.nischalskanda.tech/posts/ai_brain_impact/Sun, 27 Jul 2025 08:30:00 +0530 https://blog.nischalskanda.tech/posts/ai_brain_impact/ <figure class="responsive-image" style="margin: 2rem 0; text-align: center;">
+ <picture>
+ <source media="(max-width: 600px)" srcset="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_ab31e9d5f0809e96.jpg">
+ <source media="(max-width: 900px)" srcset="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_cb6c4cdcbfe612fe.jpg">
+ <img src="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_d3c0185f2b13abea.jpg"
+ alt="A cartoon brain melting into a puddle with a smartphone glowing nearby"
+ loading="lazy"
+ style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);">
+ </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">My brain’s legit goo while I’m vibing on Reels, bruh</figcaption></figure>
+<h2 id="introduction">Introduction</h2>
+<p>Hey peeps!, So picture this: I’m a 21-year-old B.Tech grad, fresh out of a Tier-2 college nobody cares about, and I basically owe my degree to ChatGPT for saving my ass on coding assignments and vivas. But, my brain’s turning into soggy sambar, and I’m too busy scrolling Reels to notice. Absolutely insaneeee, right? MIT’s Media Lab and other nerdy studies are yelling that AI’s torching our thinking, memory, and hustle. I’m not about to let my brain become a dead WhatsApp group, though. This blog, backed by research up to July 21, 2025, is my unfiltered Gen Z rant about our brain-drain drama and some lit fixes to keep our minds from crashing. So let’s vibe with our stupidity, and let’s save our brains, bruv.</p>
\ No newline at end of file
diff --git a/public/categories/health/page/1/index.html b/public/categories/health/page/1/index.html
index db6fdc9..3fa3931 100644
--- a/public/categories/health/page/1/index.html
+++ b/public/categories/health/page/1/index.html
@@ -1,10 +1 @@
-
-
-
-
http://localhost:1313/categories/health/
-
-
-
-
-
-
+
https://blog.nischalskanda.tech/categories/health/
\ No newline at end of file
diff --git a/public/categories/index.html b/public/categories/index.html
index 7fc2dbc..86bfb6a 100644
--- a/public/categories/index.html
+++ b/public/categories/index.html
@@ -1,173 +1,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Categories
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- THE ONLY BLOGS YOU
- WOULD LOVE TO READ
-
-
-
-
-
-
-
- August 3, 2025
-
-
-
-
- August 3, 2025
-
-
-
-
- August 3, 2025
-
-
-
-
- July 27, 2025
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
Categories THE ONLY BLOGS YOU WOULD LOVE TO READ
August 3, 2025 August 3, 2025 August 3, 2025 July 27, 2025
\ No newline at end of file
diff --git a/public/categories/index.xml b/public/categories/index.xml
index 93d63b3..401788f 100644
--- a/public/categories/index.xml
+++ b/public/categories/index.xml
@@ -1,40 +1 @@
-
-
-
- Categories on IDEA LABS
- http://localhost:1313/categories/
- Recent content in Categories on IDEA LABS
- Hugo
- en-us
- Sun, 03 Aug 2025 10:16:03 +0530
-
- -
-
Design
- http://localhost:1313/categories/design/
- Sun, 03 Aug 2025 10:30:00 +0530
- http://localhost:1313/categories/design/
-
-
- -
-
Privacy
- http://localhost:1313/categories/privacy/
- Sun, 03 Aug 2025 10:30:00 +0530
- http://localhost:1313/categories/privacy/
-
-
- -
-
Technology
- http://localhost:1313/categories/technology/
- Sun, 03 Aug 2025 10:30:00 +0530
- http://localhost:1313/categories/technology/
-
-
- -
-
Health
- http://localhost:1313/categories/health/
- Sun, 27 Jul 2025 08:30:00 +0530
- http://localhost:1313/categories/health/
-
-
-
-
+
Categories on IDEA LABS https://blog.nischalskanda.tech/categories/Recent content in Categories on IDEA LABS Hugo en-us Mon, 04 Aug 2025 19:26:28 +0530 Design https://blog.nischalskanda.tech/categories/design/Sun, 03 Aug 2025 10:30:00 +0530 https://blog.nischalskanda.tech/categories/design/ Privacy https://blog.nischalskanda.tech/categories/privacy/Sun, 03 Aug 2025 10:30:00 +0530 https://blog.nischalskanda.tech/categories/privacy/ Technology https://blog.nischalskanda.tech/categories/technology/Sun, 03 Aug 2025 10:30:00 +0530 https://blog.nischalskanda.tech/categories/technology/ Health https://blog.nischalskanda.tech/categories/health/Sun, 27 Jul 2025 08:30:00 +0530 https://blog.nischalskanda.tech/categories/health/
\ No newline at end of file
diff --git a/public/categories/page/1/index.html b/public/categories/page/1/index.html
index 83884ac..6db9711 100644
--- a/public/categories/page/1/index.html
+++ b/public/categories/page/1/index.html
@@ -1,10 +1 @@
-
-
-
-
http://localhost:1313/categories/
-
-
-
-
-
-
+
https://blog.nischalskanda.tech/categories/
\ No newline at end of file
diff --git a/public/categories/privacy/index.html b/public/categories/privacy/index.html
index ea8ab62..7e1330d 100644
--- a/public/categories/privacy/index.html
+++ b/public/categories/privacy/index.html
@@ -1,158 +1,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Privacy
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- THE ONLY BLOGS YOU
- WOULD LOVE TO READ
-
-
-
-
-
-
-
- August 3, 2025
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
Privacy THE ONLY BLOGS YOU WOULD LOVE TO READ
\ No newline at end of file
diff --git a/public/categories/privacy/index.xml b/public/categories/privacy/index.xml
index b16d21e..e3de8a4 100644
--- a/public/categories/privacy/index.xml
+++ b/public/categories/privacy/index.xml
@@ -1,19 +1,12 @@
-
-
-
- Privacy on IDEA LABS
- http://localhost:1313/categories/privacy/
- Recent content in Privacy on IDEA LABS
- Hugo
- en-us
- Sun, 03 Aug 2025 10:16:03 +0530
-
- -
-
Stop Oversharing With AI: Your Deepest Secrets Don’t Belong on Google
- http://localhost:1313/posts/you_shouldnt_share/
- Sun, 03 Aug 2025 10:30:00 +0530
- http://localhost:1313/posts/you_shouldnt_share/
- <figure class="responsive-image" style="margin: 2rem 0; text-align: center;">
<picture>
<source media="(max-width: 600px)" srcset="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_c5767b00466e87ed.jpg">
<source media="(max-width: 900px)" srcset="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_7e6d6f0efacf03f2.jpg">
<img src="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_6be122ebd9c97e86.jpg"
alt="Chat bubbles spilling out from a phone into a search bar"
loading="lazy"
style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);">
</picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">Your secrets? Yep, they’re not as private as you think.</figcaption></figure>
<h2 id="you-should-never-share-anything-personal-with-chatgpt">You Should Never Share Anything Personal With ChatGPT</h2>
<p>So folks, welcome to another episode of <em>Nischal vs. the AI Apocalypse</em>.<br>
This one’s spicy because, yeah, <strong>people are spilling their hearts to ChatGPT</strong> like it’s their BFF therapist—and turns out, it’s basically shouting that to the internet.</p>
-
-
-
+
Privacy on IDEA LABS https://blog.nischalskanda.tech/categories/privacy/Recent content in Privacy on IDEA LABS Hugo en-us Mon, 04 Aug 2025 19:26:28 +0530 Stop Oversharing With AI: Your Deepest Secrets Don’t Belong on Google https://blog.nischalskanda.tech/posts/you_shouldnt_share/Sun, 03 Aug 2025 10:30:00 +0530 https://blog.nischalskanda.tech/posts/you_shouldnt_share/ <figure class="responsive-image" style="margin: 2rem 0; text-align: center;">
+ <picture>
+ <source media="(max-width: 600px)" srcset="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_c5767b00466e87ed.jpg">
+ <source media="(max-width: 900px)" srcset="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_7e6d6f0efacf03f2.jpg">
+ <img src="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_6be122ebd9c97e86.jpg"
+ alt="Chat bubbles spilling out from a phone into a search bar"
+ loading="lazy"
+ style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);">
+ </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">Your secrets? Yep, they’re not as private as you think.</figcaption></figure>
+<h2 id="you-should-never-share-anything-personal-with-chatgpt">You Should Never Share Anything Personal With ChatGPT</h2>
+<p>So folks, welcome to another episode of <em>Nischal vs. the AI Apocalypse</em>.<br>
+This one’s spicy because, yeah, <strong>people are spilling their hearts to ChatGPT</strong> like it’s their BFF therapist—and turns out, it’s basically shouting that to the internet.</p>
\ No newline at end of file
diff --git a/public/categories/privacy/page/1/index.html b/public/categories/privacy/page/1/index.html
index 55f0377..23a1218 100644
--- a/public/categories/privacy/page/1/index.html
+++ b/public/categories/privacy/page/1/index.html
@@ -1,10 +1 @@
-
-
-
-
http://localhost:1313/categories/privacy/
-
-
-
-
-
-
+
https://blog.nischalskanda.tech/categories/privacy/
\ No newline at end of file
diff --git a/public/categories/technology/index.html b/public/categories/technology/index.html
index 286dec9..672a2fd 100644
--- a/public/categories/technology/index.html
+++ b/public/categories/technology/index.html
@@ -1,163 +1,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Technology
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- THE ONLY BLOGS YOU
- WOULD LOVE TO READ
-
-
-
-
-
-
-
- August 3, 2025
-
-
-
-
- July 27, 2025
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
Technology THE ONLY BLOGS YOU WOULD LOVE TO READ
August 3, 2025 July 27, 2025
\ No newline at end of file
diff --git a/public/categories/technology/index.xml b/public/categories/technology/index.xml
index ae9b926..79ddac5 100644
--- a/public/categories/technology/index.xml
+++ b/public/categories/technology/index.xml
@@ -1,26 +1,22 @@
-
-
-
- Technology on IDEA LABS
- http://localhost:1313/categories/technology/
- Recent content in Technology on IDEA LABS
- Hugo
- en-us
- Sun, 03 Aug 2025 10:16:03 +0530
-
- -
-
Stop Oversharing With AI: Your Deepest Secrets Don’t Belong on Google
- http://localhost:1313/posts/you_shouldnt_share/
- Sun, 03 Aug 2025 10:30:00 +0530
- http://localhost:1313/posts/you_shouldnt_share/
- <figure class="responsive-image" style="margin: 2rem 0; text-align: center;">
<picture>
<source media="(max-width: 600px)" srcset="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_c5767b00466e87ed.jpg">
<source media="(max-width: 900px)" srcset="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_7e6d6f0efacf03f2.jpg">
<img src="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_6be122ebd9c97e86.jpg"
alt="Chat bubbles spilling out from a phone into a search bar"
loading="lazy"
style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);">
</picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">Your secrets? Yep, they’re not as private as you think.</figcaption></figure>
<h2 id="you-should-never-share-anything-personal-with-chatgpt">You Should Never Share Anything Personal With ChatGPT</h2>
<p>So folks, welcome to another episode of <em>Nischal vs. the AI Apocalypse</em>.<br>
This one’s spicy because, yeah, <strong>people are spilling their hearts to ChatGPT</strong> like it’s their BFF therapist—and turns out, it’s basically shouting that to the internet.</p>
-
- -
-
Help! AI’s Turning Our Brains to Goo, and We’re Too Busy Swiping to Notice
- http://localhost:1313/posts/ai_brain_impact/
- Sun, 27 Jul 2025 08:30:00 +0530
- http://localhost:1313/posts/ai_brain_impact/
- <figure class="responsive-image" style="margin: 2rem 0; text-align: center;">
<picture>
<source media="(max-width: 600px)" srcset="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_ab31e9d5f0809e96.jpg">
<source media="(max-width: 900px)" srcset="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_cb6c4cdcbfe612fe.jpg">
<img src="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_d3c0185f2b13abea.jpg"
alt="A cartoon brain melting into a puddle with a smartphone glowing nearby"
loading="lazy"
style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);">
</picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">My brain’s legit goo while I’m vibing on Reels, bruh</figcaption></figure>
<h2 id="introduction">Introduction</h2>
<p>Hey peeps!, So picture this: I’m a 21-year-old B.Tech grad, fresh out of a Tier-2 college nobody cares about, and I basically owe my degree to ChatGPT for saving my ass on coding assignments and vivas. But, my brain’s turning into soggy sambar, and I’m too busy scrolling Reels to notice. Absolutely insaneeee, right? MIT’s Media Lab and other nerdy studies are yelling that AI’s torching our thinking, memory, and hustle. I’m not about to let my brain become a dead WhatsApp group, though. This blog, backed by research up to July 21, 2025, is my unfiltered Gen Z rant about our brain-drain drama and some lit fixes to keep our minds from crashing. So let’s vibe with our stupidity, and let’s save our brains, bruv.</p>
-
-
-
+
Technology on IDEA LABS https://blog.nischalskanda.tech/categories/technology/Recent content in Technology on IDEA LABS Hugo en-us Mon, 04 Aug 2025 19:26:28 +0530 Stop Oversharing With AI: Your Deepest Secrets Don’t Belong on Google https://blog.nischalskanda.tech/posts/you_shouldnt_share/Sun, 03 Aug 2025 10:30:00 +0530 https://blog.nischalskanda.tech/posts/you_shouldnt_share/ <figure class="responsive-image" style="margin: 2rem 0; text-align: center;">
+ <picture>
+ <source media="(max-width: 600px)" srcset="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_c5767b00466e87ed.jpg">
+ <source media="(max-width: 900px)" srcset="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_7e6d6f0efacf03f2.jpg">
+ <img src="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_6be122ebd9c97e86.jpg"
+ alt="Chat bubbles spilling out from a phone into a search bar"
+ loading="lazy"
+ style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);">
+ </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">Your secrets? Yep, they’re not as private as you think.</figcaption></figure>
+<h2 id="you-should-never-share-anything-personal-with-chatgpt">You Should Never Share Anything Personal With ChatGPT</h2>
+<p>So folks, welcome to another episode of <em>Nischal vs. the AI Apocalypse</em>.<br>
+This one’s spicy because, yeah, <strong>people are spilling their hearts to ChatGPT</strong> like it’s their BFF therapist—and turns out, it’s basically shouting that to the internet.</p> Help! AI’s Turning Our Brains to Goo, and We’re Too Busy Swiping to Notice https://blog.nischalskanda.tech/posts/ai_brain_impact/Sun, 27 Jul 2025 08:30:00 +0530 https://blog.nischalskanda.tech/posts/ai_brain_impact/ <figure class="responsive-image" style="margin: 2rem 0; text-align: center;">
+ <picture>
+ <source media="(max-width: 600px)" srcset="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_ab31e9d5f0809e96.jpg">
+ <source media="(max-width: 900px)" srcset="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_cb6c4cdcbfe612fe.jpg">
+ <img src="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_d3c0185f2b13abea.jpg"
+ alt="A cartoon brain melting into a puddle with a smartphone glowing nearby"
+ loading="lazy"
+ style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);">
+ </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">My brain’s legit goo while I’m vibing on Reels, bruh</figcaption></figure>
+<h2 id="introduction">Introduction</h2>
+<p>Hey peeps!, So picture this: I’m a 21-year-old B.Tech grad, fresh out of a Tier-2 college nobody cares about, and I basically owe my degree to ChatGPT for saving my ass on coding assignments and vivas. But, my brain’s turning into soggy sambar, and I’m too busy scrolling Reels to notice. Absolutely insaneeee, right? MIT’s Media Lab and other nerdy studies are yelling that AI’s torching our thinking, memory, and hustle. I’m not about to let my brain become a dead WhatsApp group, though. This blog, backed by research up to July 21, 2025, is my unfiltered Gen Z rant about our brain-drain drama and some lit fixes to keep our minds from crashing. So let’s vibe with our stupidity, and let’s save our brains, bruv.</p>
\ No newline at end of file
diff --git a/public/categories/technology/page/1/index.html b/public/categories/technology/page/1/index.html
index 1ad0068..2a3391c 100644
--- a/public/categories/technology/page/1/index.html
+++ b/public/categories/technology/page/1/index.html
@@ -1,10 +1 @@
-
-
-
-
http://localhost:1313/categories/technology/
-
-
-
-
-
-
+
https://blog.nischalskanda.tech/categories/technology/
\ No newline at end of file
diff --git a/public/css/style.min.7d6d4053a846e7be7c72e34acc9426ce3de97d2b963fcd4863832b8f6609b87a.css b/public/css/style.min.7d6d4053a846e7be7c72e34acc9426ce3de97d2b963fcd4863832b8f6609b87a.css
deleted file mode 100644
index e7e92b2..0000000
--- a/public/css/style.min.7d6d4053a846e7be7c72e34acc9426ce3de97d2b963fcd4863832b8f6609b87a.css
+++ /dev/null
@@ -1 +0,0 @@
-@font-face{font-family:satoshi;src:url(/fonts/Satoshi-Regular.otf)format('opentype');font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:unbounded;src:url(/fonts/Unbounded-VariableFont_wght.ttf)format('truetype-variations');font-weight:100 900;font-style:normal;font-display:swap}:root{--background-color:#F8F7F3;--text-color:#1a1a1a;--accent-color-yellow:#FFD700;--accent-color-blue:#0099FF;--font-body:'Satoshi', sans-serif;--font-heading:'Unbounded', sans-serif;--surface-color:#ffffff;--border-color:rgba(0, 0, 0, 0.1);--shadow-color:rgba(0, 0, 0, 0.1);--glass-bg:rgba(255, 255, 255, 0.2);--glass-border:rgba(255, 255, 255, 0.3);--post-border:#e0e0e0}[data-theme=dark]{--background-color:#0a0a0a;--text-color:#f5f5f5;--accent-color-yellow:#FFD700;--accent-color-blue:#00B4FF;--surface-color:#1a1a1a;--border-color:rgba(255, 255, 255, 0.1);--shadow-color:rgba(0, 0, 0, 0.3);--glass-bg:rgba(255, 255, 255, 0.05);--glass-border:rgba(255, 255, 255, 0.1);--post-border:#333333}@media(prefers-color-scheme:dark){:root:not([data-theme]){--background-color:#0a0a0a;--text-color:#f5f5f5;--accent-color-yellow:#FFD700;--accent-color-blue:#00B4FF;--surface-color:#1a1a1a;--border-color:rgba(255, 255, 255, 0.1);--shadow-color:rgba(0, 0, 0, 0.3);--glass-bg:rgba(255, 255, 255, 0.05);--glass-border:rgba(255, 255, 255, 0.1);--post-border:#333333}}body,.site-header,.container{transition:background-color .15s ease,border-color .15s ease,box-shadow .15s ease}.theme-text,.logo,.hero-headline,h1,h2,h3,h4,h5,h6,p,a,.post-item{transition:none !important}.theme-toggle{transition:color .1s ease}.theme-toggle:hover{transition:color .1s ease}body{background-color:var(--background-color);color:var(--text-color);font-family:var(--font-body);margin:0;padding-top:80px}.container{max-width:1200px;margin:0 auto;padding:0 40px}a{color:var(--text-color);text-decoration:none}.site-header{display:flex;justify-content:center;align-items:center;padding:20px 40px;position:fixed;top:0;left:0;right:0;background:rgba(248,247,243,.95);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);z-index:1000;border-bottom:1px solid var(--border-color);transition:all .3s ease;width:100%;max-width:100vw;box-sizing:border-box}.site-header::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:inherit;backdrop-filter:inherit;-webkit-backdrop-filter:inherit;border-bottom:inherit;z-index:-1}[data-theme=dark] .site-header{background:rgba(10,10,10,.95)}.site-header.scrolled{background:rgba(248,247,243,.98);box-shadow:0 2px 20px var(--shadow-color);padding:15px 40px}[data-theme=dark] .site-header.scrolled{background:rgba(10,10,10,.98)}@media(max-width:768px){.site-header.scrolled{padding:12px 20px;height:55px}}@media(max-width:480px){.site-header.scrolled{padding:10px 15px;height:45px}}.theme-toggle{background:0 0;border:none;padding:8px 12px;cursor:pointer;font-family:var(--font-heading);font-size:14px;font-weight:500;color:var(--text-color);position:absolute;left:20px;top:50%;transform:translateY(-50%);transition:none !important;z-index:1001}.theme-toggle:hover{color:var(--accent-color-blue)}[data-theme=dark] .theme-toggle:hover{color:var(--accent-color-yellow)}.theme-text{transition:none !important}.theme-text-light{display:none}.theme-text-dark{display:inline}[data-theme=dark] .theme-text-light{display:inline}[data-theme=dark] .theme-text-dark{display:none}.theme-toggle:focus{outline:2px solid var(--accent-color-blue);outline-offset:2px}[data-theme=dark] .theme-toggle:focus{outline-color:var(--accent-color-yellow)}.main-site-link{font-family:var(--font-heading);font-size:14px;font-weight:500;color:var(--text-color);text-decoration:none;position:absolute;right:20px;top:50%;transform:translateY(-50%);padding:8px 12px;border-radius:4px;transition:color .1s ease,background-color .1s ease;z-index:1001}.main-site-link:hover{color:var(--accent-color-blue);background-color:rgba(0,153,255,.1)}[data-theme=dark] .main-site-link:hover{color:var(--accent-color-yellow);background-color:rgba(255,215,0,.1)}.main-site-link:focus{outline:2px solid var(--accent-color-blue);outline-offset:2px}[data-theme=dark] .main-site-link:focus{outline-color:var(--accent-color-yellow)}.logo{font-weight:700;font-family:unbounded,sans-serif;font-size:1.5rem;letter-spacing:1px;position:absolute;left:50%;transform:translateX(-50%);color:var(--text-color);text-decoration:none;z-index:999}.hero-section{text-align:center;padding:80px 0}.hero-headline{font-family:unbounded,sans-serif;font-size:5rem;line-height:1.1;text-transform:uppercase;margin:0;font-weight:700}.interactive-o{display:inline-block;width:1em;height:.4em;background:linear-gradient(120deg,var(--accent-color-yellow),var(--accent-color-blue));border-radius:50px;vertical-align:middle;margin:0 -.05em;position:relative;top:-.1em}.interactive-arrow{display:inline-block;width:.8em;height:.8em;background:linear-gradient(160deg,var(--accent-color-blue),#6DD5FA);clip-path:polygon(0% 0%,100% 0%,100% 50%,50% 100%,0% 50%);vertical-align:middle;position:relative;top:.1em;margin-left:-.2em}.post-list{margin-top:60px}.post-item{padding:20px 0;border-bottom:1px solid var(--post-border)}.post-item h2 a{font-family:unbounded,sans-serif}.post-content{max-width:800px;margin:60px auto}.post-content h1{font-family:unbounded,sans-serif;font-size:3rem}.post-content .content{font-size:1.1rem;line-height:1.7;font-family:var(--font-body)}html,body{max-width:100vw;overflow-x:hidden}@media(max-width:768px){body{padding-top:70px}.container{padding:0 20px;max-width:100%}.site-header{padding:15px 20px;height:60px;justify-content:center;position:fixed}.theme-toggle{left:15px;font-size:12px;padding:6px 10px;transform:translateY(-50%)}.main-site-link{right:15px;font-size:12px;padding:6px 10px}.logo{font-size:1.3rem;position:relative;left:0;transform:none}.hero-headline{font-size:3rem;line-height:1.2}.post-content h1{font-size:2rem}}@media(max-width:480px){body{padding-top:60px}.container{padding:0 15px;max-width:100%}.site-header{padding:12px 15px;height:50px;min-height:50px;justify-content:center;align-items:center;flex-direction:row;gap:0}.theme-toggle{left:10px;font-size:11px;padding:5px 8px;position:absolute;top:50%;transform:translateY(-50%)}.main-site-link{right:10px;font-size:11px;padding:5px 8px}.logo{font-size:1.1rem;position:relative;left:0;transform:none;margin:0}.hero-headline{font-size:2.2rem;line-height:1.3;word-break:break-word;hyphens:auto}.post-content{margin:30px auto}.post-content h1{font-size:1.6rem;line-height:1.3}}.responsive-image,.simple-image{max-width:100%;overflow:hidden}.responsive-image img,.simple-image img{width:100%;height:auto;object-fit:cover;transition:transform .3s ease}.responsive-image:hover img{transform:scale(1.02)}.post-content img{max-width:100%;height:auto;border-radius:6px;box-shadow:0 2px 8px rgba(0,0,0,.1);margin:1rem 0}.post-content figure{margin:2rem 0;text-align:center}.post-content figcaption{margin-top:.5rem;font-size:.9rem;color:var(--text-color);opacity:.7;font-style:italic}[data-theme=dark] .post-content img{box-shadow:0 2px 8px rgba(255,255,255,.1)}@media(max-width:768px){.responsive-image,.simple-image{margin:1rem -1rem}.responsive-image img,.simple-image img{border-radius:0}}.table-container{margin:2rem 0;overflow-x:auto;border-radius:6px;border:1px solid var(--border-color)}.post-content table{width:100%;border-collapse:collapse;margin:0;background-color:var(--surface-color);font-size:.95rem;min-width:600px}.post-content thead{background-color:var(--surface-color);border-bottom:2px solid var(--border-color)}.post-content th{padding:1rem 1.5rem;text-align:left;font-weight:600;font-size:.9rem;color:var(--text-color);border-right:1px solid var(--border-color);border:none}.post-content th:last-child{border-right:none}.post-content td{padding:1rem 1.5rem;border-bottom:1px solid var(--border-color);border-right:1px solid var(--border-color);vertical-align:top;line-height:1.5;color:var(--text-color)}.post-content td:last-child{border-right:none}.post-content tbody tr{transition:background-color .2s ease}.post-content tbody tr:hover{background-color:rgba(0,0,0,2%)}.post-content tbody tr:last-child td{border-bottom:none}.post-content tbody tr:nth-child(even){background-color:rgba(0,0,0,1%)}[data-theme=dark] .post-content tbody tr:nth-child(even){background-color:rgba(255,255,255,1%)}[data-theme=dark] .post-content tbody tr:hover{background-color:rgba(255,255,255,2%)}.post-content td:first-child{font-weight:500}@media(max-width:768px){.post-content table{font-size:.85rem}.post-content th,.post-content td{padding:.8rem 1rem}.post-content th{font-size:.8rem}}[data-theme=dark] .table-container{border-color:rgba(255,255,255,.1)}
\ No newline at end of file
diff --git a/public/css/style.min.ebb59924f5be483cc2dcae3f1fa7b598a172cb274fdb994f995ed799cc8c6c56.css b/public/css/style.min.ebb59924f5be483cc2dcae3f1fa7b598a172cb274fdb994f995ed799cc8c6c56.css
new file mode 100644
index 0000000..3a3f103
--- /dev/null
+++ b/public/css/style.min.ebb59924f5be483cc2dcae3f1fa7b598a172cb274fdb994f995ed799cc8c6c56.css
@@ -0,0 +1 @@
+@font-face{font-family:satoshi;src:url(/fonts/Satoshi-Regular.otf)format('opentype');font-weight:400;font-style:normal;font-display:swap;font-preload:true;unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:unbounded;src:url(/fonts/Unbounded-VariableFont_wght.ttf)format('truetype-variations');font-weight:100 900;font-style:normal;font-display:swap;font-preload:true;unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}.fonts-loaded body{font-family:satoshi,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,sans-serif}.fonts-loaded .hero-headline,.fonts-loaded .logo{font-family:unbounded,sans-serif}body.loading{opacity:.99}body.loaded{opacity:1;transition:opacity .2s ease}.loading .hero-headline,.loading .post-item{opacity:.8}.loaded .hero-headline,.loaded .post-item{opacity:1;transition:opacity .3s ease}:root{--background-color:#F8F7F3;--text-color:#1a1a1a;--accent-color-yellow:#FFD700;--accent-color-blue:#0099FF;--font-body:'Satoshi', sans-serif;--font-heading:'Unbounded', sans-serif;--surface-color:#ffffff;--border-color:rgba(0, 0, 0, 0.1);--shadow-color:rgba(0, 0, 0, 0.1);--glass-bg:rgba(255, 255, 255, 0.2);--glass-border:rgba(255, 255, 255, 0.3);--post-border:#e0e0e0}[data-theme=dark]{--background-color:#0a0a0a;--text-color:#f5f5f5;--accent-color-yellow:#FFD700;--accent-color-blue:#00B4FF;--surface-color:#1a1a1a;--border-color:rgba(255, 255, 255, 0.1);--shadow-color:rgba(0, 0, 0, 0.3);--glass-bg:rgba(255, 255, 255, 0.05);--glass-border:rgba(255, 255, 255, 0.1);--post-border:#333333}@media(prefers-color-scheme:dark){:root:not([data-theme]){--background-color:#0a0a0a;--text-color:#f5f5f5;--accent-color-yellow:#FFD700;--accent-color-blue:#00B4FF;--surface-color:#1a1a1a;--border-color:rgba(255, 255, 255, 0.1);--shadow-color:rgba(0, 0, 0, 0.3);--glass-bg:rgba(255, 255, 255, 0.05);--glass-border:rgba(255, 255, 255, 0.1);--post-border:#333333}}body,.site-header,.container{transition:background-color .15s ease,border-color .15s ease,box-shadow .15s ease}.theme-text,.logo,.hero-headline,h1,h2,h3,h4,h5,h6,p,a,.post-item{transition:none !important}.theme-toggle{transition:color .1s ease}.theme-toggle:hover{transition:color .1s ease}body{background-color:var(--background-color);color:var(--text-color);font-family:var(--font-body);margin:0;padding-top:80px}.container{max-width:1200px;margin:0 auto;padding:0 40px}a{color:var(--text-color);text-decoration:none}.site-header{display:flex;justify-content:center;align-items:center;padding:20px 40px;position:fixed;top:0;left:0;right:0;background:rgba(248,247,243,.95);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);z-index:1000;border-bottom:1px solid var(--border-color);transition:all .3s ease;width:100%;max-width:100vw;box-sizing:border-box}.site-header::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:inherit;backdrop-filter:inherit;-webkit-backdrop-filter:inherit;border-bottom:inherit;z-index:-1}[data-theme=dark] .site-header{background:rgba(10,10,10,.95)}.site-header.scrolled{background:rgba(248,247,243,.98);box-shadow:0 2px 20px var(--shadow-color);padding:15px 40px}[data-theme=dark] .site-header.scrolled{background:rgba(10,10,10,.98)}@media(max-width:768px){.site-header.scrolled{padding:12px 20px;height:55px}}@media(max-width:480px){.site-header.scrolled{padding:10px 15px;height:45px}}.theme-toggle{background:0 0;border:none;padding:8px 12px;cursor:pointer;font-family:var(--font-heading);font-size:14px;font-weight:500;color:var(--text-color);position:absolute;left:20px;top:50%;transform:translateY(-50%);transition:none !important;z-index:1001}.theme-toggle:hover{color:var(--accent-color-blue)}[data-theme=dark] .theme-toggle:hover{color:var(--accent-color-yellow)}.theme-text{transition:none !important}.theme-text-light{display:none}.theme-text-dark{display:inline}[data-theme=dark] .theme-text-light{display:inline}[data-theme=dark] .theme-text-dark{display:none}.theme-toggle:focus{outline:2px solid var(--accent-color-blue);outline-offset:2px}[data-theme=dark] .theme-toggle:focus{outline-color:var(--accent-color-yellow)}.main-site-link{font-family:var(--font-heading);font-size:14px;font-weight:500;color:var(--text-color);text-decoration:none;position:absolute;right:20px;top:50%;transform:translateY(-50%);padding:8px 12px;border-radius:4px;transition:color .1s ease,background-color .1s ease;z-index:1001}.main-site-link:hover{color:var(--accent-color-blue);background-color:rgba(0,153,255,.1)}[data-theme=dark] .main-site-link:hover{color:var(--accent-color-yellow);background-color:rgba(255,215,0,.1)}.main-site-link:focus{outline:2px solid var(--accent-color-blue);outline-offset:2px}[data-theme=dark] .main-site-link:focus{outline-color:var(--accent-color-yellow)}.logo{font-weight:700;font-family:unbounded,sans-serif;font-size:1.5rem;letter-spacing:1px;position:absolute;left:50%;transform:translateX(-50%);color:var(--text-color);text-decoration:none;z-index:999}.hero-section{text-align:center;padding:80px 0}.hero-arrow{margin-top:20px;text-align:center}.hero-headline{font-family:unbounded,sans-serif;font-size:4.2rem;line-height:1.1;text-transform:uppercase;margin:0;font-weight:700}.interactive-o{display:inline-block;width:1.5em;height:.6em;background:linear-gradient(120deg,var(--accent-color-yellow),var(--accent-color-blue));border-radius:50px;vertical-align:middle;margin:0 -.05em;position:relative;top:-.1em}.interactive-arrow{display:inline-block !important;width:2.5em !important;height:2.5em !important;background:linear-gradient(160deg,var(--accent-color-blue),#6DD5FA) !important;clip-path:polygon(0% 0%,100% 0%,100% 50%,50% 100%,0% 50%) !important;vertical-align:middle !important;position:relative !important;top:.1em !important;margin-left:-.2em !important}.post-list{margin-top:60px}.post-item{padding:20px 0;border-bottom:1px solid var(--post-border)}.post-item h2 a{font-family:unbounded,sans-serif}.post-content{max-width:800px;margin:60px auto}.post-content h1{font-family:unbounded,sans-serif;font-size:3rem}.post-content .content{font-size:1.1rem;line-height:1.7;font-family:var(--font-body)}html,body{max-width:100vw;overflow-x:hidden}@media(max-width:768px){body{padding-top:70px}.container{padding:0 20px;max-width:100%}.site-header{padding:15px 20px;height:60px;justify-content:center;position:fixed}.theme-toggle{left:15px;font-size:12px;padding:6px 10px;transform:translateY(-50%)}.main-site-link{right:15px;font-size:12px;padding:6px 10px}.logo{font-size:1.3rem;position:relative;left:0;transform:none}.hero-headline{font-size:3rem;line-height:1.2}.post-content h1{font-size:2rem}}@media(max-width:480px){body{padding-top:60px}.container{padding:0 15px;max-width:100%}.site-header{padding:12px 15px;height:50px;min-height:50px;justify-content:center;align-items:center;flex-direction:row;gap:0}.theme-toggle{left:10px;font-size:11px;padding:5px 8px;position:absolute;top:50%;transform:translateY(-50%)}.main-site-link{right:10px;font-size:11px;padding:5px 8px}.logo{font-size:1.1rem;position:relative;left:0;transform:none;margin:0}.hero-headline{font-size:2.2rem;line-height:1.3;word-break:break-word;hyphens:auto}.post-content{margin:30px auto}.post-content h1{font-size:1.6rem;line-height:1.3}}.responsive-image,.simple-image{max-width:100%;overflow:hidden}.responsive-image img,.simple-image img{width:100%;height:auto;object-fit:cover;transition:transform .3s ease}.responsive-image:hover img{transform:scale(1.02)}.post-content img{max-width:100%;height:auto;border-radius:6px;box-shadow:0 2px 8px rgba(0,0,0,.1);margin:1rem 0}.post-content figure{margin:2rem 0;text-align:center}.post-content figcaption{margin-top:.5rem;font-size:.9rem;color:var(--text-color);opacity:.7;font-style:italic}[data-theme=dark] .post-content img{box-shadow:0 2px 8px rgba(255,255,255,.1)}@media(max-width:768px){.responsive-image,.simple-image{margin:1rem -1rem}.responsive-image img,.simple-image img{border-radius:0}}.table-container{margin:2rem 0;overflow-x:auto;border-radius:6px;border:1px solid var(--border-color)}.post-content table{width:100%;border-collapse:collapse;margin:0;background-color:var(--surface-color);font-size:.95rem;min-width:600px}.post-content thead{background-color:var(--surface-color);border-bottom:2px solid var(--border-color)}.post-content th{padding:1rem 1.5rem;text-align:left;font-weight:600;font-size:.9rem;color:var(--text-color);border-right:1px solid var(--border-color);border:none}.post-content th:last-child{border-right:none}.post-content td{padding:1rem 1.5rem;border-bottom:1px solid var(--border-color);border-right:1px solid var(--border-color);vertical-align:top;line-height:1.5;color:var(--text-color)}.post-content td:last-child{border-right:none}.post-content tbody tr{transition:background-color .2s ease}.post-content tbody tr:hover{background-color:rgba(0,0,0,2%)}.post-content tbody tr:last-child td{border-bottom:none}.post-content tbody tr:nth-child(even){background-color:rgba(0,0,0,1%)}[data-theme=dark] .post-content tbody tr:nth-child(even){background-color:rgba(255,255,255,1%)}[data-theme=dark] .post-content tbody tr:hover{background-color:rgba(255,255,255,2%)}.post-content td:first-child{font-weight:500}@media(max-width:768px){.post-content table{font-size:.85rem}.post-content th,.post-content td{padding:.8rem 1rem}.post-content th{font-size:.8rem}}[data-theme=dark] .table-container{border-color:rgba(255,255,255,.1)}
\ No newline at end of file
diff --git a/public/index.html b/public/index.html
index 174b42c..7b414d4 100644
--- a/public/index.html
+++ b/public/index.html
@@ -3,6 +3,19 @@
+
+
+
@@ -57,20 +70,229 @@
+
+
+
@@ -87,23 +309,14 @@
-
-
+
+
-
-
-
@@ -128,8 +341,11 @@
THE ONLY BLOGS YOU
- WOULD LOVE TO READ
+ WOULD LOVE TO READ
+
+
+
-
-
+
-
-
+
+
+
+
+
+