import { ExternalLink } from "lucide-react"; import { Button } from "@/components/ui/button"; const AboutPage = () => { return (

About this starter

This project now ships with React Router v6, Tailwind CSS, and a shadcn/ui component baseline so you can focus on building TaylorDB experiences instead of wiring up UI plumbing.

Routing

Use nested routes with layouts via createBrowserRouter{" "} and Outlet. Add pages in src/pages and register them in the router.

UI primitives

The shared Button uses shadcn/ui patterns and can be extended with more components via the CLI using{" "} components.json.

); }; export default AboutPage;