diff --git a/public/img/haditha/mobile/section-three-bgi.png b/public/img/haditha/mobile/section-three-bgi.png new file mode 100644 index 0000000..3b62cd3 Binary files /dev/null and b/public/img/haditha/mobile/section-three-bgi.png differ diff --git a/stores/authStore.ts b/stores/authStore.ts index 202c4f2..9a4a6d2 100644 --- a/stores/authStore.ts +++ b/stores/authStore.ts @@ -69,7 +69,7 @@ export const useAuthStore = defineStore("authStore", { isGuest(state) { return !state.isRealUser; }, - async isAuthenticatedGetter(state) { + isAuthenticatedGetter(state) { let isAuthenticated = useStorage("id_token", "GuestAccess").value; // updating value sample // isAuthenticated.value = null @@ -266,8 +266,6 @@ export const useAuthStore = defineStore("authStore", { // }); }, async login(credentials) { - console.info(import.meta.env.VITE_AUTH_BASE_URL) - try { const { $api } = useNuxtApp(); const response = await $api(apis.login, { diff --git a/tailwind.config.js b/tailwind.config.js index fee7a5f..00c74c1 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,24 +1,32 @@ module.exports = { - prefix: 'tw-', + prefix: "tw-", + content: [ + "./components/**/*.{js,vue,ts}", + "./layouts/**/*.vue", + "./pages/**/*.vue", + "./plugins/**/*.{js,ts}", + "./nuxt.config.{js,ts}", + ], + theme: { + screens: { + sm: "360px", + md: "720px", + lg: "992px", + xl: "1200px", + "2xl": "1400px", + "3xl": "1900px", + }, + extend: {}, + }, + plugins: [], + purge: { + enabled: process.env.NODE_ENV === "production", content: [ - './components/**/*.{js,vue,ts}', - './layouts/**/*.vue', - './pages/**/*.vue', - './plugins/**/*.{js,ts}', - './nuxt.config.{js,ts}', + "./components/**/*.{js,vue,ts}", + "./layouts/**/*.vue", + "./pages/**/*.vue", + "./plugins/**/*.{js,ts}", + "./nuxt.config.{js,ts}", ], - theme: { - extend: {}, - }, - plugins: [], - purge: { - enabled: process.env.NODE_ENV === 'production', - content: [ - './components/**/*.{js,vue,ts}', - './layouts/**/*.vue', - './pages/**/*.vue', - './plugins/**/*.{js,ts}', - './nuxt.config.{js,ts}', - ], - }, - }; \ No newline at end of file + }, +};