Skip to content

Commit

Permalink
Merge pull request #11 from data-miner00/dev
Browse files Browse the repository at this point in the history
Mitigate broken previous and next links
  • Loading branch information
data-miner00 authored Aug 6, 2023
2 parents ba4acf8 + 9127412 commit f771ce0
Show file tree
Hide file tree
Showing 6 changed files with 265 additions and 12 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ To run this template project in your local for personal use or contribution, sim
## Roadmap

- [x] Add Dark Mode
- [ ] Add i18n
- [x] Add i18n
- [x] Add Styling
- [x] Sass
- [x] Tailwind
Expand Down Expand Up @@ -193,6 +193,7 @@ List of resources that are helpful and would like to give credit to.
- [How to Build a Multi-Language Application with NuxtJS](https://crowdin.com/blog/2023/01/24/nuxt-js-i18n-tutorial)
- [Vue i18n](https://vue-i18n.intlify.dev/)
- [Nuxt Seo Kit](https://github.com/harlan-zw/nuxt-seo-kit)
- [Nuxt Image](https://image.nuxtjs.org/)

<p align="right">(<a href="#readme-top">back to top</a>)</p>

Expand Down
2 changes: 1 addition & 1 deletion app.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<NuxtLayout>
<SeoKit />
<OgImageStatic />
<!-- <OgImageStatic /> -->
<NuxtPage />
</NuxtLayout>
</template>
2 changes: 1 addition & 1 deletion components/MobileSidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const links = [
@click="toggleSidebar"
>
<div
class="w-96 h-screen bg-white dark:bg-slate-800"
class="w-full md:w-96 h-screen bg-white dark:bg-slate-800"
@click.stop
role="navigation"
>
Expand Down
1 change: 1 addition & 0 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export default defineNuxtConfig({
"@nuxtjs/tailwindcss",
"@nuxtjs/color-mode",
"@nuxtjs/i18n",
"@nuxt/image",
],
extends: ["nuxt-seo-kit"],
tailwindcss: {
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
},
"devDependencies": {
"@nuxt/content": "^2.7.0",
"@nuxt/image": "1.0.0-rc.1",
"@nuxtjs/color-mode": "^3.3.0",
"@nuxtjs/i18n": "8.0.0-beta.10",
"@nuxtjs/tailwindcss": "^6.8.0",
Expand Down
Loading

0 comments on commit f771ce0

Please sign in to comment.