import { Button } from "~/registry/ui/button/button";
import { Card } from "~/registry/ui/card";
import { Input } from "~/registry/ui/input";
import { Label } from "~/registry/ui/label/label";
import { Tabs } from "~/registry/ui/tabs";
import { TextField } from "~/registry/ui/text-field";
export function TabsDemo() {
return (
<Tabs.Root className="w-full max-w-[400px]" defaultSelectedKey="account">
<Tabs.List className="grid w-full grid-cols-2">
<Tabs.Trigger id="account">Account</Tabs.Trigger>
<Tabs.Trigger id="password">Password</Tabs.Trigger>
</Tabs.List>
<Tabs.Content id="account">
<Card.Root>
<Card.Header>
<Card.Title>Account</Card.Title>
<Card.Description>
Make changes to your account here. Click save when you're
done.
</Card.Description>
</Card.Header>
<Card.Content className="grid gap-6">
<TextField defaultValue="Pedro Duarte">
<Label>Name</Label>
<Input />
</TextField>
<TextField defaultValue="@peduarte">
<Label>Username</Label>
<Input />
</TextField>
</Card.Content>
<Card.Footer>
<Button>Save changes</Button>
</Card.Footer>
</Card.Root>
</Tabs.Content>
<Tabs.Content id="password">
<Card.Root>
<Card.Header>
<Card.Title>Password</Card.Title>
<Card.Description>
Change your password here. After saving, you'll be logged
out.
</Card.Description>
</Card.Header>
<Card.Content className="grid gap-6">
<TextField>
<Label>Current password</Label>
<Input type="password" />
</TextField>
<TextField>
<Label>New password</Label>
<Input type="password" />
</TextField>
</Card.Content>
<Card.Footer>
<Button>Save password</Button>
</Card.Footer>
</Card.Root>
</Tabs.Content>
</Tabs.Root>
);
}