import type { Route } from "./+types/home"; import { treaty } from "@elysiajs/eden"; import type { App } from "@elysia/src"; import { toast } from "sonner"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; import { SearchIcon } from "@/components/icons/search"; const app = treaty("localhost:15412"); export function meta({}: Route.MetaArgs) { return [{ title: "中V档案馆" }]; } export default function Home() { return (

中V档案馆

); }