18 lines
369 B
TypeScript
18 lines
369 B
TypeScript
import Skills from "@/app/components/Skills";
|
|
import Services from "@/app/components/Services";
|
|
import Contact from "@/app/components/Contact";
|
|
import About from "@/app/components/About";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div>
|
|
<About />
|
|
|
|
<Skills />
|
|
|
|
<Services />
|
|
|
|
<Contact />
|
|
</div>
|
|
)
|
|
}
|