starfleet-devholodeck-router

Feature: New Button

CD
Commander Data
Create a new primary button component using shadcn/ui and Tailwind CSS.
CA
CodexPilot AI
Understood. I will create a new file `src/components/ui/new-button.tsx` with the requested component. Here is the plan:
CA
CodexPilot AI
Here are the changes to be applied.
Code Changes Proposed
Create a new button component and update the main page to use it.

src/components/ui/new-button.tsx

import { Button } from "@/components/ui/button";
export const NewButton = () => <Button>New Primary Button</Button>;

src/app/page.tsx

import { NewButton } from "@/components/ui/new-button";
export default function Home() {
return (
<main className="flex min-h-screen flex-col items-center justify-center p-24">
<NewButton />
</main>
);
}