mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-21 15:26:15 -04:00
feat(config): hide the banner by default
This commit is contained in:
parent
972ffe6f69
commit
161a21f285
2 changed files with 8 additions and 1 deletions
|
@ -55,6 +55,12 @@ export const config = figue({
|
|||
env: 'VITE_NEW_TOOLS',
|
||||
},
|
||||
},
|
||||
showBanner: {
|
||||
doc: 'Show the banner',
|
||||
format: 'boolean',
|
||||
default: false,
|
||||
env: 'VITE_SHOW_BANNER',
|
||||
},
|
||||
})
|
||||
.loadEnv({
|
||||
...import.meta.env,
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<script setup lang="ts">
|
||||
import { config } from '@/config';
|
||||
import { useToolStore } from '@/tools/tools.store';
|
||||
import { Heart } from '@vicons/tabler';
|
||||
import { useHead } from '@vueuse/head';
|
||||
|
@ -13,7 +14,7 @@ useHead({ title: 'IT Tools - Handy online tools for developers' });
|
|||
<template>
|
||||
<div class="home-page">
|
||||
<div class="grid-wrapper">
|
||||
<n-grid x-gap="12" y-gap="12" cols="1 400:2 800:3 1200:4 2000:8">
|
||||
<n-grid v-if="config.showBanner" x-gap="12" y-gap="12" cols="1 400:2 800:3 1200:4 2000:8">
|
||||
<n-gi>
|
||||
<colored-card title="You like it-tools?" :icon="Heart">
|
||||
Give us a star on
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue