Refactor website to use shadcn components

This commit is contained in:
2025-06-28 12:01:43 +00:00
parent 1648e376bf
commit 8c05ad29cb
78 changed files with 3858 additions and 2722 deletions

View File

@@ -1,12 +1,10 @@
import React from 'react';
import Home from "@/components/Home/Home";
import Home from "@/app/(root)/Home";
const HomePage = () => {
return (
<div>
<Home />
</div>
);
return (
<Home/>
);
};
export default HomePage;