import { ArrowRight } from "lucide-react"; import { Link } from "react-router-dom"; import { Button } from "@/components/ui/button"; const HomePage = () => { return (

Welcome

Build your TaylorDB UI with React Router + shadcn/ui

Routing, Tailwind, and shadcn/ui are wired up. Start connecting components to your TaylorDB data using the generated client and types.

Animation check: this card fades in using{" "} animate-in fade-in from tw-animate-css.

If you see a smooth fade on load, the plugin is wired correctly.

); }; export default HomePage;