-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
852 additions
and
611 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] | ||
} | ||
"recommendations": ["Vue.volar"] | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
{ | ||
"name": "remzi-info", | ||
"private": true, | ||
"version": "2.0.0", | ||
"version": "3.0.0", | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "vue-tsc && vite build", | ||
"build": "vue-tsc -b && vite build", | ||
"preview": "vite preview" | ||
}, | ||
"dependencies": { | ||
"@popperjs/core": "^2.11.8", | ||
"@unhead/vue": "^1.10.4", | ||
"bootstrap": "^5.3.3", | ||
"bootstrap-icons": "^1.11.3", | ||
"vue": "^3.5.0", | ||
"vue": "^3.5.3", | ||
"vue-router": "^4.4.3" | ||
}, | ||
"devDependencies": { | ||
"@types/bootstrap": "^5.2.10", | ||
"@types/node": "^22.5.2", | ||
"@types/node": "^22.5.4", | ||
"@vitejs/plugin-vue": "^5.1.3", | ||
"sass": "^1.77.8", | ||
"sass-embedded": "^1.78.0", | ||
"sass-loader": "^16.0.1", | ||
"typescript": "^5.5.4", | ||
"vite": "^5.4.2", | ||
"vue-tsc": "^2.1.4" | ||
"vite": "^5.4.3", | ||
"vue-tsc": "^2.1.6" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,10 @@ | ||
<script setup lang="ts"> | ||
import NavBar from '@/NavBar.vue'; | ||
import FooterComp from '@/FooterComp.vue'; | ||
</script> | ||
|
||
<template> | ||
<nav-bar></nav-bar> | ||
<router-view></router-view> | ||
<footer-comp></footer-comp> | ||
</template> | ||
|
||
<script lang="ts"> | ||
import {defineComponent} from 'vue' | ||
import NavBar from '@/NavBar.vue' | ||
import FooterComp from '@/FooterComp.vue' | ||
export default defineComponent({ | ||
name: 'App', | ||
components: { | ||
NavBar, | ||
FooterComp | ||
} | ||
}) | ||
</script> | ||
</template> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,28 @@ | ||
<script setup lang="ts"> | ||
import { useHead } from '@unhead/vue'; | ||
import Sidebar from '@/Sidebar.vue'; | ||
useHead({ | ||
title: 'Remzi Cavdar', | ||
meta: [ | ||
{ | ||
name: 'description', | ||
content: 'Mijn naam is Remzi Cavdar en ik studeer HBO-ICT Software Engineering aan de Hogeschool van Amsterdam (HvA).' | ||
}, | ||
{ | ||
name: 'author', | ||
content: 'Remzi Cavdar' | ||
}, | ||
], | ||
link: [ | ||
{ | ||
rel: 'canonical', | ||
href: 'https://remzi.info' | ||
} | ||
] | ||
}); | ||
</script> | ||
|
||
<template> | ||
<main> | ||
<div class="container"> | ||
|
@@ -81,8 +106,7 @@ | |
</p> | ||
<p> | ||
<strong><i class="bi bi-phone"></i> </strong> <a href="tel:+31611719929">06 117 199 29</a><br> | ||
<strong><i class="bi bi-envelope-at"></i> </strong> <a | ||
href="mailto:[email protected]">[email protected]</a><br> | ||
<strong><i class="bi bi-envelope-at"></i> </strong> <a href="mailto:[email protected]">[email protected]</a><br> | ||
</p> | ||
</div> | ||
<sidebar></sidebar> | ||
|
@@ -91,37 +115,6 @@ | |
</main> | ||
</template> | ||
|
||
<script lang="ts"> | ||
import {defineComponent} from 'vue' | ||
import Sidebar from '@/Sidebar.vue' | ||
export default defineComponent({ | ||
name: 'Home', | ||
components: {Sidebar}, | ||
head() { | ||
return { | ||
title: 'Remzi Cavdar', | ||
meta: [ | ||
{ | ||
name: 'description', | ||
content: 'Mijn naam is Remzi Cavdar en ik studeer HBO-ICT Software Engineering aan de Hogeschool van Amsterdam (HvA).' | ||
}, | ||
{ | ||
name: 'author', | ||
content: 'Remzi Cavdar' | ||
}, | ||
], | ||
link: [ | ||
{ | ||
name: 'canonical', | ||
content: 'https://remzi.info' | ||
} | ||
] | ||
} | ||
} | ||
}) | ||
</script> | ||
|
||
<style lang="scss" scoped> | ||
svg { | ||
max-width: 24px; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.