diff --git a/web/public/DirtySprite.mp3 b/web/public/DirtySprite.mp3 deleted file mode 100644 index fc4241d..0000000 Binary files a/web/public/DirtySprite.mp3 and /dev/null differ diff --git a/web/public/Nico on the Beat.mp3 b/web/public/Nico on the Beat.mp3 deleted file mode 100644 index c87cf04..0000000 Binary files a/web/public/Nico on the Beat.mp3 and /dev/null differ diff --git a/web/public/mainhoversound.mp3 b/web/public/mainhoversound.mp3 deleted file mode 100644 index 6618204..0000000 Binary files a/web/public/mainhoversound.mp3 and /dev/null differ diff --git a/web/public/model/MainStudio.glb b/web/public/model/MainStudio.glb deleted file mode 100644 index 4a92967..0000000 Binary files a/web/public/model/MainStudio.glb and /dev/null differ diff --git a/web/public/textures/MainStudio.webp b/web/public/textures/MainStudio.webp deleted file mode 100644 index ba4d9f3..0000000 Binary files a/web/public/textures/MainStudio.webp and /dev/null differ diff --git a/web/public/textures/MainStudio2.webp b/web/public/textures/MainStudio2.webp deleted file mode 100644 index 2000670..0000000 Binary files a/web/public/textures/MainStudio2.webp and /dev/null differ diff --git a/web/src/app/(root)/components/Newsletter.tsx b/web/src/app/(root)/components/Newsletter.tsx deleted file mode 100644 index cfe9244..0000000 --- a/web/src/app/(root)/components/Newsletter.tsx +++ /dev/null @@ -1,77 +0,0 @@ -'use client'; - -import CutCornerButton from '@/components/CutCornerButton'; -import { useGSAP } from '@gsap/react'; -import { useRef } from 'react'; -import { gsap } from '@/lib/gsap'; - -export default function Newsletter() { - const containerRef = useRef(null); - - useGSAP( - () => { - gsap.from(containerRef.current, { - opacity: 0, - scale: 0.95, - y: 50, - duration: 1, - scrollTrigger: { - trigger: containerRef.current, - start: 'top 90%', - toggleActions: 'play none none reverse', - }, - }); - }, - { scope: containerRef } - ); - - return ( -
-
- {/* Decorative elements */} -
-
- -
-
- - The Technical Lab Notes - -
-
- -

- Deep dives into infrastructure and{' '} - low-level engineering. -

- -

- Join my personal mailing list for exclusive technical breakthroughs, - system design breakdowns, and the stuff that's too complex for a - standard blog post. -

- -
e.preventDefault()} - > -
- -
-
-
- -
- - -

- Read by senior engineers at top tech companies -

-
-
- ); -} diff --git a/web/src/app/(root)/components/Philosophy.tsx b/web/src/app/(root)/components/Philosophy.tsx deleted file mode 100644 index 9f60aab..0000000 --- a/web/src/app/(root)/components/Philosophy.tsx +++ /dev/null @@ -1,100 +0,0 @@ -'use client'; - -import { useGSAP } from '@gsap/react'; -import { useRef } from 'react'; -import { gsap } from '@/lib/gsap'; - -export default function Philosophy() { - const containerRef = useRef(null); - const textRef = useRef(null); - - useGSAP( - () => { - if (!textRef.current) return; - - gsap.fromTo( - textRef.current, - { - opacity: 0, - y: 100, - rotateX: -20, - }, - { - opacity: 1, - y: 0, - rotateX: 0, - duration: 1.5, - ease: 'power4.out', - scrollTrigger: { - trigger: containerRef.current, - start: 'top 80%', - end: 'bottom 20%', - toggleActions: 'play none none reverse', - }, - } - ); - }, - { scope: containerRef } - ); - - return ( -
-
-
-
- - Engineering Vision - -
- -

- Mastering complexity,
- architecting{' '} - - resilient - {' '} - systems. -

- -

- I don't just build features; I engineer scalable ecosystems. My - blog is a laboratory for deep dives into distributed systems, - low-level optimization, and the art of building software that survives - the test of extreme scale. -

- -
- {[ - { - title: 'System Design', - desc: 'Architecting for high availability and zero-downtime deployment cycles.', - }, - { - title: 'Performance', - desc: 'Shaving microseconds from critical paths using low-level optimization.', - }, - { - title: 'Infrastructure', - desc: 'Automating complex cloud environments with code-first reliability.', - }, - ].map((item, i) => ( -
-

- {item.title} -

-

- {item.desc} -

-
- ))} -
-
-
- ); -}