Update color and robot.txt

Signed-off-by: nurRiyad <asadnurriyad@gmail.com>
This commit is contained in:
nurRiyad
2023-09-26 00:33:34 +06:00
parent 2756f7f439
commit 9ba2aae4f1
8 changed files with 673 additions and 2049 deletions

View File

@@ -35,7 +35,7 @@ withDefaults(defineProps<Props>(), {
/> />
</div> </div>
<div class="sm:col-span-7 p-5"> <div class="sm:col-span-7 p-5">
<h2 class="text-xl font-semibold text-black dark:text-zinc-300 pb-1 group-hover:text-sky-700"> <h2 class="text-xl font-semibold text-black dark:text-zinc-300 pb-1 group-hover:text-sky-700 dark:group-hover:text-sky-400">
{{ title }} {{ title }}
</h2> </h2>
<p class="text-ellipsis line-clamp-2"> <p class="text-ellipsis line-clamp-2">
@@ -53,7 +53,7 @@ withDefaults(defineProps<Props>(), {
</p> </p>
</div> </div>
</div> </div>
<div class="flex group-hover:underline text-sky-700 items-center pt-2"> <div class="flex group-hover:underline text-sky-700 dark:text-sky-400 items-center pt-2">
<p>Read More</p> <p>Read More</p>
<LogoArrow /> <LogoArrow />
</div> </div>

View File

@@ -45,13 +45,13 @@ withDefaults(defineProps<Props>(), {
</template> </template>
</div> </div>
</div> </div>
<h2 class="text-xl font-semibold text-black dark:text-zinc-300 pb-1 group-hover:text-sky-700"> <h2 class="text-xl font-semibold text-black dark:text-zinc-300 pb-1 group-hover:text-sky-700 dark:group-hover:text-sky-400">
{{ title }} {{ title }}
</h2> </h2>
<p class="text-ellipsis line-clamp-2 text-base"> <p class="text-ellipsis line-clamp-2 text-base">
{{ description }} {{ description }}
</p> </p>
<div class="flex group-hover:underline text-sky-700 items-center py-2"> <div class="flex group-hover:underline text-sky-700 dark:text-sky-400 items-center py-2">
<p>Read More</p> <p>Read More</p>
<LogoArrow /> <LogoArrow />
</div> </div>

View File

@@ -7,11 +7,11 @@
<LogoConfused /> <LogoConfused />
</div> </div>
<div class="p-5"> <div class="p-5">
<h2 class="text-3xl font-semibold text-black dark:text-zinc-300 pb-1 group-hover:text-sky-700"> <h2 class="text-3xl font-semibold text-black dark:text-zinc-300 pb-1 group-hover:text-sky-700 dark:group-hover:text-sky-400">
No Post Available No Post Available
</h2> </h2>
<div class="flex group-hover:underline text-sky-700 items-center pt-2"> <div class="flex group-hover:underline text-sky-700 dark:text-sky-400 items-center pt-2">
<p>Back To Home</p> <p>Back To Home</p>
<LogoArrow /> <LogoArrow />
</div> </div>

View File

@@ -48,7 +48,7 @@ export default defineNuxtConfig({
'@vueuse/nuxt', '@vueuse/nuxt',
'nuxt-og-image', 'nuxt-og-image',
'@nuxt/content', '@nuxt/content',
'@nuxtjs/robots', 'nuxt-simple-robots',
'@nuxtseo/module', '@nuxtseo/module',
'@nuxtjs/fontaine', '@nuxtjs/fontaine',
'@nuxtjs/color-mode', '@nuxtjs/color-mode',

View File

@@ -16,7 +16,6 @@
"@nuxt/image": "^1.0.0-rc.2", "@nuxt/image": "^1.0.0-rc.2",
"@nuxtjs/color-mode": "^3.3.0", "@nuxtjs/color-mode": "^3.3.0",
"@nuxtjs/fontaine": "^0.2.5", "@nuxtjs/fontaine": "^0.2.5",
"@nuxtjs/robots": "^3.0.0",
"@nuxtjs/tailwindcss": "^6.6.7", "@nuxtjs/tailwindcss": "^6.6.7",
"@nuxtseo/module": "^2.0.0-beta.15", "@nuxtseo/module": "^2.0.0-beta.15",
"@tailwindcss/forms": "^0.5.4", "@tailwindcss/forms": "^0.5.4",
@@ -27,6 +26,7 @@
"nuxt": "^3.7.3", "nuxt": "^3.7.3",
"nuxt-icon": "^0.4.0", "nuxt-icon": "^0.4.0",
"nuxt-og-image": "^2.0.28", "nuxt-og-image": "^2.0.28",
"nuxt-simple-robots": "^3.1.5",
"nuxt-simple-sitemap": "^3.1.3", "nuxt-simple-sitemap": "^3.1.3",
"typescript": "^5.0.4", "typescript": "^5.0.4",
"vue-content-loader": "^2.0.1" "vue-content-loader": "^2.0.1"

View File

@@ -116,11 +116,11 @@ defineOgImage()
<div class="flex justify-center items-center space-x-6 "> <div class="flex justify-center items-center space-x-6 ">
<button :disabled="pageNumber <= 1" @click="onPreviousPageClick"> <button :disabled="pageNumber <= 1" @click="onPreviousPageClick">
<Icon name="mdi:code-less-than" size="30" :class="{ 'text-sky-700': pageNumber > 1 }" /> <Icon name="mdi:code-less-than" size="30" :class="{ 'text-sky-700 dark:text-sky-400': pageNumber > 1 }" />
</button> </button>
<p>{{ pageNumber }} / {{ totalPage }}</p> <p>{{ pageNumber }} / {{ totalPage }}</p>
<button :disabled="pageNumber >= totalPage" @click="onNextPageClick"> <button :disabled="pageNumber >= totalPage" @click="onNextPageClick">
<Icon name="mdi:code-greater-than" size="30" :class="{ 'text-sky-700': pageNumber < totalPage }" /> <Icon name="mdi:code-greater-than" size="30" :class="{ 'text-sky-700 dark:text-sky-400': pageNumber < totalPage }" />
</button> </button>
</div> </div>
</main> </main>

View File

@@ -1,2 +0,0 @@
User-agent: *
Allow: /

2700
yarn.lock

File diff suppressed because it is too large Load Diff