minor improvemts, changed colors

This commit is contained in:
roberts
2023-04-30 18:02:29 +02:00
parent b4817d968e
commit 9c3f3788c9
12 changed files with 9 additions and 51 deletions

View File

@@ -1,13 +1,13 @@
import { Legs, Back, Chest, Shoulder, Triceps, Biceps } from '@/views/muscles';
import {Back, Biceps, Chest, Legs, Shoulder, Triceps } from "../views/muscles/Index.js";
export default {
path: '/muscles',
path: '/muscles',
children: [
{ path: 'legs', component: Legs },
{ path: 'back', component: Back },
{ path: 'chest', component: Chest },
{ path: 'shoulder', component: Shoulder },
{ path: 'triceps', component: Triceps },
{ path: 'bicepts', component: Biceps },
{ path: 'biceps', component: Biceps },
]
};

View File