Skip to content

Commit

Permalink
fix images and update os images
Browse files Browse the repository at this point in the history
  • Loading branch information
msartore committed Jul 18, 2024
1 parent d36aeb6 commit aba4026
Show file tree
Hide file tree
Showing 15 changed files with 53 additions and 62 deletions.
6 changes: 3 additions & 3 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -82,19 +82,19 @@ const pages = ref([
label: "ATA-GUI",
path: "/projects/ata-gui",
index: "0",
img: "/src/assets/banner1.png",
img: "/assets/banner1.png",
},
{
label: "Ares",
path: "/projects/ares",
index: "1",
img: "/src/assets/banner4.png",
img: "/assets/banner4.png",
},
{
label: "ATA",
path: "/projects/ata",
index: "2",
img: "/src/assets/banner3.png",
img: "/assets/banner3.png",
},
],
},
Expand Down
6 changes: 0 additions & 6 deletions src/assets/icons/android.svg

This file was deleted.

6 changes: 0 additions & 6 deletions src/assets/icons/download.svg

This file was deleted.

6 changes: 0 additions & 6 deletions src/assets/icons/github.svg

This file was deleted.

6 changes: 0 additions & 6 deletions src/assets/icons/linkedin-in.svg

This file was deleted.

6 changes: 0 additions & 6 deletions src/assets/icons/linux.svg

This file was deleted.

6 changes: 0 additions & 6 deletions src/assets/icons/windows.svg

This file was deleted.

6 changes: 0 additions & 6 deletions src/assets/icons/x-twitter.svg

This file was deleted.

4 changes: 4 additions & 0 deletions src/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,12 @@ declare module 'vue' {
ElContainer: typeof import('element-plus/es')['ElContainer']
ElDialog: typeof import('element-plus/es')['ElDialog']
ElFooter: typeof import('element-plus/es')['ElFooter']
ElForm: typeof import('element-plus/es')['ElForm']
ElFormItem: typeof import('element-plus/es')['ElFormItem']
ElHeader: typeof import('element-plus/es')['ElHeader']
ElImage: typeof import('element-plus/es')['ElImage']
ElInput: typeof import('element-plus/es')['ElInput']
ElLink: typeof import('element-plus/es')['ElLink']
ElMain: typeof import('element-plus/es')['ElMain']
ElMenu: typeof import('element-plus/es')['ElMenu']
ElMenuItem: typeof import('element-plus/es')['ElMenuItem']
Expand Down
12 changes: 8 additions & 4 deletions src/components/CommonProject.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<h1>Supported systems</h1>
</el-row>
<el-row>
<a class="icon">
<a v-if="project.os_supported.android" class="icon">
<svg
xmlns="http://www.w3.org/2000/svg"
width="32"
Expand All @@ -37,7 +37,7 @@
/>
</svg>
</a>
<a class="icon">
<a v-if="project.os_supported.windows" class="icon">
<svg
xmlns="http://www.w3.org/2000/svg"
width="32"
Expand All @@ -50,7 +50,7 @@
/>
</svg>
</a>
<a class="icon">
<a v-if="project.os_supported.linux" class="icon">
<svg
xmlns="http://www.w3.org/2000/svg"
width="32"
Expand Down Expand Up @@ -94,7 +94,11 @@ const props = defineProps({
description: String,
features: [],
terms: String,
op_supported: [],
os_supported: {
android: Boolean,
windows: Boolean,
linux: Boolean,
},
},
});
Expand Down
17 changes: 16 additions & 1 deletion src/views/Contact.vue
Original file line number Diff line number Diff line change
@@ -1 +1,16 @@
<template></template>
<template>
<h2>Contact Me</h2>
<p>
Thank you for visiting my personal website. I'd love to hear from you!
Whether you have a question, want to collaborate, or just want to say hello,
feel free to get in touch using the information below.
</p>

<h3>Email</h3>
<p>
For general inquiries, please email me at:
<a href="mailto:[email protected]" type="primary"
>[email protected]</a
>
</p>
</template>
Loading

0 comments on commit aba4026

Please sign in to comment.