import { HomeIcon, SettingsIcon } from "lucide-react";
export const config: {
mainRoutes: {
path: string;
matchExpression: RegExp;
label: string;
icon: React.ComponentType;
}[];
} = {
mainRoutes: [
{
path: "/",
label: "Home",
matchExpression: /^\/$/,
icon: HomeIcon,
},
{
path: "/settings",
label: "Settings",
matchExpression: /^\/settings$/,
icon: SettingsIcon,
},
],
};
npx shadcn@latest add @simple-ai/chat-01import { Chat01 } from "@/components/chat-01"<Chat01 />