diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d9b222d..a5cb7b0 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -33,7 +33,18 @@ jobs: run: | npm ci npm run generate - + + - name: Prepare S3 uploads + run: | + # Ensure the dist directory exists + if [ -d "dist" ]; then + # Copy index.html to each route directory + mkdir -p dist/experience dist/projects dist/contact + cp dist/index.html dist/experience/index.html + cp dist/index.html dist/projects/index.html + cp dist/index.html dist/contact/index.html + fi + - name: Sync to S3 env: AWS_REGION: us-east-1 diff --git a/assets/files/Mehmet_Deveci_Resume.pdf b/assets/files/Mehmet_Deveci_Resume.pdf new file mode 100644 index 0000000..3b440b0 Binary files /dev/null and b/assets/files/Mehmet_Deveci_Resume.pdf differ diff --git a/assets/files/resume.pdf b/assets/files/resume.pdf deleted file mode 100644 index 7bb38c9..0000000 Binary files a/assets/files/resume.pdf and /dev/null differ diff --git a/assets/styles/colors.scss b/assets/styles/colors.scss index 58e6070..76a9dbe 100644 --- a/assets/styles/colors.scss +++ b/assets/styles/colors.scss @@ -22,7 +22,7 @@ $tooltipBg: #1f2131; // Tooltip background $redButton: #da7164; // Red UI button $yellowButton: #ebc063; // Yellow UI button $greenButton: #3fdd78; // Green UI button - +$blueButton: #103cfc; // Blue UI button // Status colors $error: #b80000; // Error state diff --git a/assets/styles/main.scss b/assets/styles/main.scss index 1a987bc..34bd81b 100644 --- a/assets/styles/main.scss +++ b/assets/styles/main.scss @@ -677,4 +677,7 @@ p { font-size: 1.25rem; line-height: 1.75rem; } + .modal-wrapper--full { + max-height: 260px; + } } diff --git a/components/AppHeader.vue b/components/AppHeader.vue index fae88ff..d1c7798 100644 --- a/components/AppHeader.vue +++ b/components/AppHeader.vue @@ -1,11 +1,21 @@