diff --git a/src/app.vue b/src/app.vue new file mode 100644 index 00000000..637bf667 --- /dev/null +++ b/src/app.vue @@ -0,0 +1,45 @@ + + + diff --git a/src/components/Clients/RestoreConfig.vue b/src/components/Clients/RestoreConfig.vue index 39a109f9..fb086682 100644 --- a/src/components/Clients/RestoreConfig.vue +++ b/src/components/Clients/RestoreConfig.vue @@ -34,15 +34,14 @@ diff --git a/src/components/base/Container.vue b/src/components/base/Container.vue new file mode 100644 index 00000000..e69de29b diff --git a/src/components/ui/Icon.vue b/src/components/ui/Icon.vue new file mode 100644 index 00000000..e69de29b diff --git a/src/components/ui/Modal.vue b/src/components/ui/Modal.vue new file mode 100644 index 00000000..e69de29b diff --git a/src/components/ui/NavBar.vue b/src/components/ui/NavBar.vue new file mode 100644 index 00000000..e69de29b diff --git a/src/layouts/Footer.vue b/src/layouts/Footer.vue new file mode 100644 index 00000000..146e8e7a --- /dev/null +++ b/src/layouts/Footer.vue @@ -0,0 +1,42 @@ + + + diff --git a/src/layouts/Header.vue b/src/layouts/Header.vue new file mode 100644 index 00000000..10beaee0 --- /dev/null +++ b/src/layouts/Header.vue @@ -0,0 +1,218 @@ + + + diff --git a/src/pages/index.vue b/src/pages/index.vue index ba84a42d..3432f16f 100644 --- a/src/pages/index.vue +++ b/src/pages/index.vue @@ -1,142 +1,6 @@ diff --git a/src/tailwind.config.ts b/src/tailwind.config.ts index 78ec2c9e..4aa8b111 100644 --- a/src/tailwind.config.ts +++ b/src/tailwind.config.ts @@ -1,5 +1,6 @@ import type { Config } from 'tailwindcss'; import type { PluginAPI } from 'tailwindcss/types/config'; +import * as colors from 'tailwindcss/colors.js'; export default { darkMode: 'selector', @@ -14,6 +15,12 @@ export default { xl: '1280px', '2xl': '1536px', }, + extend: { + colors: { + DEFAULT: colors.red[800], + primary: colors.red[800], + }, + }, }, plugins: [ function addDisabledClass({ addUtilities }: PluginAPI) {