-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sub-pages are all in place, everything uses components now, so will b…
…e easier to maintain
- Loading branch information
Showing
12 changed files
with
71 additions
and
59 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<script setup> | ||
import SectionHeaderColorTools from '@/components/layout/SectionHeaderColorTools.vue'; | ||
</script> | ||
|
||
<template> | ||
<div class="flex flex-col gap-2 w-full"> | ||
<SectionHeaderColorTools /> | ||
<div class="p-4"> | ||
<p class="text-sm text-gray-600 pb-2">Tools for building palettes and colors</p> | ||
<ul> | ||
<li class="py-2 border-b"><router-link to="/color-tools/palette-generator" class="btn mt-4 text-lime-500">Color Palette Generator</router-link></li> | ||
<li class="py-2 border-b"><router-link to="/color-tools/lighten-color" class="btn mt-4 text-lime-500">Lighten Color</router-link></li> | ||
<li class="py-2 "><router-link to="/color-tools/darken-color" class="btn mt-4 text-lime-500">Darken Color</router-link></li> | ||
</ul> | ||
</div> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<script setup> | ||
import SectionHeaderCssTools from '@/components/layout/SectionHeaderCssTools.vue'; | ||
</script> | ||
|
||
<template> | ||
<div class="flex flex-col gap-2 w-full"> | ||
<SectionHeaderCssTools /> | ||
<div class="p-4"> | ||
<p class="text-sm text-gray-600 pb-2">Tools for working with cascading style sheets</p> | ||
<ul> | ||
<li class="py-2 border-b"><router-link to="/css-tools/static-type-scale" class="btn mt-4 text-slate-500">Static Type Scale</router-link></li> | ||
</ul> | ||
</div> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<script setup> | ||
import SectionHeaderTextTools from '@/components/layout/SectionHeaderTextTools.vue'; | ||
</script> | ||
|
||
<template> | ||
<div class="flex flex-col gap-2 w-full"> | ||
<SectionHeaderTextTools /> | ||
<div class="p-4"> | ||
<p class="text-sm text-gray-600 pb-2">Tools for working with text and typography</p> | ||
<ul> | ||
<li class="py-2 border-b"><router-link to="/text-tools/lipsum" class="btn mt-4 text-blue-500">Lorem Ipsum</router-link></li> | ||
<li class="py-2"><router-link to="/text-tools/word-counter" class="btn mt-4 text-blue-500">Word Counter and Keywords Analysis</router-link></li> | ||
</ul> | ||
</div> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<script setup> | ||
import LinksColorTools from '@/components/layout/LinksColorTools.vue'; | ||
</script> | ||
|
||
<template> | ||
Color Tools | ||
<LinksColorTools /> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<script setup> | ||
import LinksCssTools from '@/components/layout/LinksCssTools.vue'; | ||
</script> | ||
|
||
<template> | ||
CSS Tools | ||
<LinksCssTools /> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<script setup> | ||
import LinksTextTools from '@/components/layout/LinksTextTools.vue'; | ||
</script> | ||
|
||
<template> | ||
Typography Tools | ||
<LinksTextTools /> | ||
</template> |