ChandimaPrabath's picture
api routes
11c56f5
raw
history blame contribute delete
293 Bytes
import Card from "@/components/Card";
import CategoriesSection from "@/components/CategoriesSection";
import './indexpage.css';
export default function Home() {
return (
<div className="index-page font-[family-name:var(--font-geist-sans)]">
<CategoriesSection/>
</div>
);
}