diff --git a/src/app/(frontend)/[tenant]/dashboard/workouts/page.tsx b/src/app/(frontend)/[tenant]/dashboard/workouts/page.tsx index 60dfea2..967a560 100644 --- a/src/app/(frontend)/[tenant]/dashboard/workouts/page.tsx +++ b/src/app/(frontend)/[tenant]/dashboard/workouts/page.tsx @@ -3,14 +3,14 @@ import { DashboardContent, DashboardContentSection } from '@/components/Dashboar const WorkoutsPage = () => { return ( - - + +

Workouts

- +

Exercises

- +

Clients

diff --git a/src/components/Dashboard/DashboardContent.tsx b/src/components/Dashboard/DashboardContent.tsx index 5db66f4..cb3e30c 100644 --- a/src/components/Dashboard/DashboardContent.tsx +++ b/src/components/Dashboard/DashboardContent.tsx @@ -9,7 +9,7 @@ type Props = { const DashboardContent = (props: Props) => { const { children, className } = props return ( -
+
{children}
)