init project files

This commit is contained in:
!verity
2026-03-16 21:25:53 +01:00
commit 2045808f00
40 changed files with 3436 additions and 0 deletions

19
app/page.tsx Normal file
View File

@@ -0,0 +1,19 @@
import Hero from '@/components/sections/Hero';
import TechStack from '@/components/sections/TechStack';
import Projects from '@/components/sections/Projects';
import About from '@/components/sections/About';
import Experience from '@/components/sections/Experience';
import Contact from '@/components/sections/Contact';
export default function Home() {
return (
<>
<Hero />
<TechStack />
<Projects />
<About />
<Experience />
<Contact />
</>
);
}