3 | 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log* 3 | .nuxt 4 | .nitro 5 | .cache 6 | .output 7 | .env 8 | dist 9 | .DS_Store 10 | .data 11 | 12 | # Yarn 13 | .yarn/cache 14 | .yarn/*state* 15 | 16 | # Local History 17 | .history 18 | -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- 1 | // eslint.config.mjs 2 | import antfu from '@antfu/eslint-config' 3 | 4 | export default antfu({ 5 | rules: { 6 | 'no-undef': 'off', 7 | }, 8 | vue: true, 9 | typescript: true, 10 | }) 11 | -------------------------------------------------------------------------------- /app/stores/app.ts: -------------------------------------------------------------------------------- 1 | export const useAppStore = defineStore('app', () => { 2 | const silderIsOpen = ref(false) 3 | const searchModalIsOpen = ref(false) 4 | 5 | return { 6 | silderIsOpen, 7 | searchModalIsOpen, 8 | } 9 | }) 10 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.codeActionsOnSave": { 3 | "source.fixAll.eslint": "explicit" 4 | }, 5 | "files.associations": { 6 | "*.css": "postcss" 7 | }, 8 | "editor.formatOnSave": false, 9 | "css.lint.unknownAtRules": "ignore" 10 | } 11 | -------------------------------------------------------------------------------- /app/components/navigation/sections/header.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 |
12 | {{ contentStore.page.title }} 13 |
14 |
14 | 16 | {{ "Git101" }} 17 |
18 | 22 |
32 | 34 | {{ "Git101" }} 35 |
36 |İPUCU
79 |Git'in komutları ve bu komutların seçenek ve parametreleri ile ilgili yardım almak istediğinizde 80 |