Vlad Chikalkin 10981e2afb
Issues/66 (#67)
* feat(profile): add 'Услуги' link button to LinksCard for service management

* feat(services): add create and update service functionalities with corresponding API actions and hooks
2025-08-01 19:54:10 +03:00

16 lines
410 B
TypeScript

import { Container } from '@/components/layout';
import { PageHeader } from '@/components/navigation';
import { ServicesAddButton, ServicesList } from '@/components/profile/services';
export default function SchedulePage() {
return (
<>
<PageHeader title="Услуги" />
<Container className="px-0">
<ServicesList />
<ServicesAddButton />
</Container>
</>
);
}