sheer / src /routes.tsx
barreloflube's picture
feat: add Hugging Face and Clerk integrations with enhanced configuration
136f9cf
raw
history blame
209 Bytes
import { HomePage } from "@/pages/home/page";
import { HomeIcon } from "lucide-react";
export const routes = [
{
path: "/",
label: "Home",
icon: <HomeIcon />,
component: <HomePage />,
}
];