diff --git a/index.html b/index.html index ea58979..81947d7 100644 --- a/index.html +++ b/index.html @@ -22,6 +22,7 @@ /> -
+
+ diff --git a/src/pages/registerView.vue b/src/pages/registerView.vue new file mode 100644 index 0000000..6c0f362 --- /dev/null +++ b/src/pages/registerView.vue @@ -0,0 +1,49 @@ + + + + + diff --git a/src/router/index.ts b/src/router/index.ts index 0f20a6b..ac03f82 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -1,5 +1,6 @@ import type { RouteRecordRaw } from 'vue-router'; import { createRouter, createWebHistory } from 'vue-router'; +import registerView from '@/pages/registerView.vue'; export const routerHistory = createWebHistory(); @@ -9,6 +10,11 @@ const routes: RouteRecordRaw[] = [ name: 'Dashboard', component: () => import('@/pages/DashBoard.vue'), }, + { + path: '/register', + name: 'register', + component: registerView, + }, ]; export default createRouter({ diff --git a/src/shared/components/RadioCard.vue b/src/shared/components/RadioCard.vue new file mode 100644 index 0000000..21171f0 --- /dev/null +++ b/src/shared/components/RadioCard.vue @@ -0,0 +1,120 @@ + + + + + diff --git a/src/styles/common.scss b/src/styles/common.scss index b600024..559e4e2 100644 --- a/src/styles/common.scss +++ b/src/styles/common.scss @@ -1,7 +1,7 @@ @use 'sass:math'; $color-primary: #5cb860; -$color-primary-hover: #7fc782; +$color-primary-hover: #eef7ee; $color-primary-disabled: #a9d0ab; $color-secondary: #e2e2e2; @@ -11,12 +11,15 @@ $color-secondary-disabled: #c9cac9; $color-border-hover: #2b2b2b; $color-error: #ff4500; -$color-text-primary: #2b2b2b; +$color-text-primary: #1a1a1c; $color-text-primary-disabled: #7a7a7a; $color-text-secondary: #515151; $color-text-secondary-pale: #5151515d; $color-text-secondary-disabled: #939393; $color-text-white: #ffffff; +$color-text-dimmed: #626264; + +$color-container-secondary: #f1f1f4; $color-background: #ffffff; $color-background-dim: #2b2b2baa;