import { Button } from '@/components/ui/button';

export default function App() {
  return (
    <section className="h-full flex flex-col items-center justify-center gap-4 text-2xl font-bold">
      <p>Ready to code!</p>
      <span>with</span>
      <p>
        React + Tailwind + TypeScript + ESLint + <Button>Shadcn</Button>
      </p>
    </section>
  );
}

