21 lines
558 B
TypeScript
21 lines
558 B
TypeScript
import { Nav } from "@/components/nav";
|
|
import { Hero } from "@/components/hero";
|
|
import { ExperienceSection } from "@/components/experience";
|
|
import { SkillsSection } from "@/components/skills";
|
|
import { AppsSection } from "@/components/apps";
|
|
import { ContactSection } from "@/components/contact";
|
|
import { Footer } from "@/components/footer";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<Nav />
|
|
<Hero />
|
|
<ExperienceSection />
|
|
<SkillsSection />
|
|
<AppsSection />
|
|
<ContactSection />
|
|
<Footer />
|
|
</>
|
|
);
|
|
}
|