data: Updated placeholders

This commit is contained in:
2026-02-22 17:16:00 +05:30
parent 02fd803370
commit a275fcc2f4
9 changed files with 143 additions and 54 deletions

View File

@@ -3,6 +3,7 @@ import './App.css';
import { THEMES } from './themes';
import { CatEasterEgg } from './components/CatEasterEgg';
import { FooterSection } from './components/FooterSection';
import { EducationSection } from './components/EducationSection';
import { HeroSection } from './components/HeroSection';
import { LabNotesSection } from './components/LabNotesSection';
import { NavigationBar } from './components/NavigationBar';
@@ -63,14 +64,13 @@ export default function App() {
}, [showThemePillTooltip]);
return (
<div className="min-h-screen bg-[var(--bg-base)] text-[var(--text-main)] font-mono selection:bg-[var(--color-accent)] selection:text-[var(--bg-base)] relative overflow-x-hidden">
<div className="min-h-screen bg-(--bg-base) text-(--text-main) font-mono selection:bg-(--color-accent) selection:text-[var(--bg-base)] relative overflow-x-hidden">
{/* SVG Noise Filter for rough paper texture */}
<svg className="hidden">
{/* <svg className="hidden">
<filter id="noiseFilter">
<feTurbulence type="fractalNoise" baseFrequency="0.7" numOctaves="3" stitchTiles="stitch" />
</filter>
</svg>
</svg> */}
<div className="fixed inset-0 z-0 pointer-events-none opacity-[0.04]" style={{ filter: 'url(#noiseFilter)' }} />
{/* Blueprint Dot Grid Background */}
@@ -84,13 +84,9 @@ export default function App() {
}}
/>
{/* Hidden Cat Easter Egg */}
<CatEasterEgg />
<div className="relative z-10 max-w-5xl mx-auto px-6 py-12 flex flex-col gap-16">
<NavigationBar />
<HeroSection
activeThemeName={activeTheme.name}
hasClickedThemePill={hasClickedThemePill}
@@ -100,19 +96,13 @@ export default function App() {
setShowThemePillTooltip(true);
}}
/>
<SystemOverviewSection />
<EducationSection />
<div className="grid grid-cols-1 md:grid-cols-3 gap-12 mt-8">
<ProjectsSection />
<LabNotesSection />
</div>
<FooterSection />
</div>
</div>
);