From 193234dd4d4addc6139e51f15e3570559f2ee6c0 Mon Sep 17 00:00:00 2001 From: Rami James Date: Sun, 14 Apr 2024 17:03:06 -0400 Subject: [PATCH] Sub-pages are all in place, everything uses components now, so will be easier to maintain --- public/crisp-logo-white.svg | 11 ++--- src/components/layout/Header.vue | 8 ++-- src/components/layout/LinksColorTools.vue | 17 +++++++ src/components/layout/LinksCssTools.vue | 15 +++++++ src/components/layout/LinksTextTools.vue | 16 +++++++ .../layout/SectionHeaderColorTools.vue | 2 +- .../layout/SectionHeaderCssTools.vue | 2 +- .../layout/SectionHeaderTextTools.vue | 2 +- src/views/ColorTools/ColorToolsView.vue | 4 +- src/views/CssTools/CssToolsView.vue | 4 +- src/views/HomeView.vue | 45 +++---------------- src/views/TextTools/TextToolsView.vue | 4 +- 12 files changed, 71 insertions(+), 59 deletions(-) create mode 100644 src/components/layout/LinksColorTools.vue create mode 100644 src/components/layout/LinksCssTools.vue create mode 100644 src/components/layout/LinksTextTools.vue diff --git a/public/crisp-logo-white.svg b/public/crisp-logo-white.svg index f0cafcc..2479125 100644 --- a/public/crisp-logo-white.svg +++ b/public/crisp-logo-white.svg @@ -1,14 +1,9 @@ - - + + - - - - - - + diff --git a/src/components/layout/Header.vue b/src/components/layout/Header.vue index 82090ef..895e389 100644 --- a/src/components/layout/Header.vue +++ b/src/components/layout/Header.vue @@ -76,10 +76,10 @@ const mobileMenuOpen = ref(false);
- - Crisp Tools - + + + + Crisp Tools
diff --git a/src/components/layout/LinksColorTools.vue b/src/components/layout/LinksColorTools.vue new file mode 100644 index 0000000..27840f1 --- /dev/null +++ b/src/components/layout/LinksColorTools.vue @@ -0,0 +1,17 @@ + + + \ No newline at end of file diff --git a/src/components/layout/LinksCssTools.vue b/src/components/layout/LinksCssTools.vue new file mode 100644 index 0000000..4e38806 --- /dev/null +++ b/src/components/layout/LinksCssTools.vue @@ -0,0 +1,15 @@ + + + \ No newline at end of file diff --git a/src/components/layout/LinksTextTools.vue b/src/components/layout/LinksTextTools.vue new file mode 100644 index 0000000..6e0c153 --- /dev/null +++ b/src/components/layout/LinksTextTools.vue @@ -0,0 +1,16 @@ + + + \ No newline at end of file diff --git a/src/components/layout/SectionHeaderColorTools.vue b/src/components/layout/SectionHeaderColorTools.vue index c1928c4..552e418 100644 --- a/src/components/layout/SectionHeaderColorTools.vue +++ b/src/components/layout/SectionHeaderColorTools.vue @@ -6,6 +6,6 @@

Color Tools

- View all + View all \ No newline at end of file diff --git a/src/components/layout/SectionHeaderCssTools.vue b/src/components/layout/SectionHeaderCssTools.vue index f197939..b22d5de 100644 --- a/src/components/layout/SectionHeaderCssTools.vue +++ b/src/components/layout/SectionHeaderCssTools.vue @@ -6,6 +6,6 @@

Css Tools

- View all + View all \ No newline at end of file diff --git a/src/components/layout/SectionHeaderTextTools.vue b/src/components/layout/SectionHeaderTextTools.vue index 8cfd660..1e9533d 100644 --- a/src/components/layout/SectionHeaderTextTools.vue +++ b/src/components/layout/SectionHeaderTextTools.vue @@ -6,6 +6,6 @@

Text Tools

- View all + View all \ No newline at end of file diff --git a/src/views/ColorTools/ColorToolsView.vue b/src/views/ColorTools/ColorToolsView.vue index 440051f..c1ba763 100644 --- a/src/views/ColorTools/ColorToolsView.vue +++ b/src/views/ColorTools/ColorToolsView.vue @@ -1,7 +1,7 @@ \ No newline at end of file diff --git a/src/views/CssTools/CssToolsView.vue b/src/views/CssTools/CssToolsView.vue index 3feea25..2a4e489 100644 --- a/src/views/CssTools/CssToolsView.vue +++ b/src/views/CssTools/CssToolsView.vue @@ -1,7 +1,7 @@ \ No newline at end of file diff --git a/src/views/HomeView.vue b/src/views/HomeView.vue index 70da7ea..bc24f3c 100644 --- a/src/views/HomeView.vue +++ b/src/views/HomeView.vue @@ -1,50 +1,19 @@