init project files
This commit is contained in:
19
app/page.tsx
Normal file
19
app/page.tsx
Normal 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 />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user