import { Button, Card } from '@acme/design-system';

export function UserProfile() {
  return (
    <Card>
      <h1>User Profile</h1>
      <Button>Edit Profile</Button>
    </Card>
  );
}
