13 lines
208 B
TypeScript
13 lines
208 B
TypeScript
import { Hero, Projects } from "@/components/setions";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<Hero />
|
|
<div className="w-full mt-64">
|
|
<Projects />
|
|
</div>
|
|
</>
|
|
);
|
|
}
|