Skip to content

Commit

Permalink
Update version 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
smenendez19 committed Jan 11, 2024
1 parent 139868a commit 057d1c0
Show file tree
Hide file tree
Showing 11 changed files with 77 additions and 84 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# CHANGELOG

## 1.3.2

- Modificaciones en el navbar.
- Modificaciones en el Index (OG).
- Cambio de tamaño de iconos e imagenes.
- Se eliminaron etiquetas sin usar.
- Modificaciones en los titulos de las secciones.

## 1.3.1

- Agregado de librerias de compresion.
Expand Down
5 changes: 4 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
<html lang="en">

<head>
<meta name="description" content="Portfolio" />
<meta property="og:title" content="Santiago Menendez's Portfolio" />
<meta property="og:type" content="Page" />
<meta property="og:url" content="https://santimenendez19.github.io/portfolio"/>
<meta name="description" content="Santiago Menendez's Portfolio" />
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@
"dependencies": {
"@mdi/js": "7.4.47",
"vite-plugin-vuetify": "2.0.1",
"vue": "3.3.13",
"vue-i18n": "9.8.0",
"vue": "3.4.10",
"vue-i18n": "9.9.0",
"vue-router": "4.2.5",
"vuetify": "3.4.9"
"vuetify": "3.4.10"
},
"devDependencies": {
"@vitejs/plugin-vue": "5.0.0",
"eslint-plugin-vue": "9.19.2",
"@vitejs/plugin-vue": "5.0.3",
"eslint-plugin-vue": "9.20.0",
"@intlify/unplugin-vue-i18n": "2.0.0",
"eslint": "8.56.0",
"vite": "5.0.10",
"vite": "5.0.11",
"vite-plugin-eslint": "1.8.1",
"vite-plugin-compression2": "^0.11.0"
}
Expand Down
4 changes: 2 additions & 2 deletions src/components/About.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<v-container fill-height>
<v-row class="ma-auto">
<v-col>
<h3 class="text-start">
<h2 class="text-start">
{{ $t("about.title") }}
</h3>
</h2>
</v-col>
</v-row>
<v-row justify="center">
Expand Down
31 changes: 23 additions & 8 deletions src/components/AvatarLinks.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@
<v-row
justify="center"
>
<h2>Santiago Ezequiel Menendez</h2>
<v-col>
<h2>Santiago Ezequiel Menendez</h2>
</v-col>
</v-row>
<v-row
justify="center"
Expand All @@ -43,11 +45,19 @@
:id="contact.type"
v-bind="props"
variant="plain"
:icon="getIcon(contact.type)"
:href="contact.url"
aria-label=""
target="_blank"
/>
:ripple="false"
>
<template #default>
<v-row>
<v-icon
:icon="getIcon(contact.type)"
size="30"
/>
</v-row>
</template>
</v-btn>
</template>
</v-tooltip>
</div>
Expand All @@ -61,11 +71,16 @@
v-bind="props"
variant="plain"
:href="$t(cv.url)"
:icon="icons.mdiDownload"
aria-label=""
download
class="mx-1"
/>
:ripple="false"
>
<template #default>
<v-icon
:icon="icons.mdiDownload"
size="30"
/>
</template>
</v-btn>
</template>
</v-tooltip>
</v-row>
Expand Down
15 changes: 7 additions & 8 deletions src/components/Courses.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<template>
<v-container fill-height>
<v-row class="ma-auto">
<v-col>
<h2 class="text-start">
{{ $t("courses.title") }}
</h2>
</v-col>
</v-row>
<v-row
justify="center"
class="ma-auto rounded-xl"
Expand All @@ -14,14 +21,6 @@
multi-sort
no-data-text="No data"
>
<template #[`top`]>
<v-toolbar
flat
class="rounded-t-xl"
>
<v-toolbar-title>{{ $t("courses.title") }}</v-toolbar-title>
</v-toolbar>
</template>
<template #[`item.url`]="{ item }">
<v-btn
class="rounded-xl"
Expand Down
4 changes: 2 additions & 2 deletions src/components/Education.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
class="ma-auto"
>
<v-col>
<h3 class="text-start">
<h2 class="text-start">
{{ $t("education.title") }}
</h3>
</h2>
</v-col>
</v-row>
<v-row justify="center">
Expand Down
4 changes: 2 additions & 2 deletions src/components/Experience.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
class="ma-auto"
>
<v-col>
<h3 class="text-start">
<h2 class="text-start">
{{ $t("experience.title") }}
</h3>
</h2>
</v-col>
</v-row>
<v-row justify="center">
Expand Down
8 changes: 3 additions & 5 deletions src/components/Projects.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@
class="ma-auto"
>
<v-col>
<div class="text-start">
<h3>
{{ $t("projects.title") }}
</h3>
</div>
<h2 class="text-start">
{{ $t("projects.title") }}
</h2>
</v-col>
</v-row>
<v-row justify="center">
Expand Down
48 changes: 14 additions & 34 deletions src/components/StartPortfolio.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,72 +4,52 @@
<v-main id="main">
<v-container>
<v-lazy
id="main"
:options="{ threshold: 1.0 }"
:options="{ threshold: 0.5 }"
transition="fade-in-transition"
>
<div>
<AvatarLinksComponent />
</div>
<AvatarLinksComponent />
</v-lazy>
<v-lazy
id="about"
:options="{ threshold: 1.0 }"
:options="{ threshold: 0.5 }"
transition="fade-in-transition"
>
<div>
<AboutComponent />
</div>
<AboutComponent />
</v-lazy>
<v-divider />
<v-lazy
id="experience"
:options="{ threshold: 1.0 }"
:options="{ threshold: 0.5 }"
transition="fade-in-transition"
>
<div>
<ExperienceComponent />
</div>
<ExperienceComponent />
</v-lazy>
<v-divider />
<v-lazy
id="education"
:options="{ threshold: 1.0 }"
:options="{ threshold: 0.5 }"
transition="slide-x-transition"
>
<div>
<EducationComponent />
</div>
<EducationComponent />
</v-lazy>
<v-divider />
<v-lazy
id="courses"
:options="{ threshold: 1.0 }"
:options="{ threshold: 0.5 }"
transition="slide-x-transition"
>
<div>
<CoursesComponent />
</div>
<CoursesComponent />
</v-lazy>
<v-divider />
<v-lazy
id="skills"
:options="{ threshold: 1.0 }"
:options="{ threshold: 0.5 }"
transition="slide-x-transition"
>
<div>
<SkillsComponent />
</div>
<SkillsComponent />
</v-lazy>
<v-divider />
<v-lazy
id="projects"
:options="{ threshold: 1.0 }"
:options="{ threshold: 0.5 }"
transition="fade-in-transition"
>
<div>
<ProjectsComponent />
</div>
<ProjectsComponent />
</v-lazy>
</v-container>
</v-main>
Expand Down
22 changes: 6 additions & 16 deletions src/components/layouts/MenuNav.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,12 @@
class="d-flex d-sm-none d-md-none d-lg-none d-xl-none"
@click="drawer=true"
/>
<v-row
justify="start"
>
<v-col
cols="12"
class=""
>
<v-btn href="/portfolio/">
<h3>Portfolio</h3>
</v-btn>
</v-col>
</v-row>
<v-tabs
v-model="tab"
class="d-none d-sm-flex"
center-active
align-tabs="center"
dark
show-arrows
hide-slider
>
<v-tab @click="goToComponent('main')">
{{ $t("menu.about") }}
Expand All @@ -50,12 +37,15 @@
class="mr-2"
@click="toggleTheme"
>
<v-icon :icon="icons.mdiBrightness6" />
<v-icon
:icon="icons.mdiBrightness6"
size="30"
/>
</v-btn>
<v-btn @click="changeLang">
<v-avatar
class="mr-2"
size="24"
size="30"
tile
>
<img
Expand Down

0 comments on commit 057d1c0

Please sign in to comment.