removed title for the skills page, looks cleaner without and update deploy to link to nginx on deploy
This commit is contained in:
2
.github/workflows/deploy.yml
vendored
2
.github/workflows/deploy.yml
vendored
@@ -16,4 +16,4 @@ jobs:
|
|||||||
key: ${{ secrets.SSH_PRIVATE_KEY }}
|
key: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||||
passphrase: ${{ secrets.SSH_PASSPHRASE }}
|
passphrase: ${{ secrets.SSH_PASSPHRASE }}
|
||||||
script: |
|
script: |
|
||||||
powershell -ExecutionPolicy Bypass -Command "Write-Host '=== Starting deployment ==='; if (Test-Path 'C:\projects\digital-resume-FE') { Set-Location 'C:\projects\digital-resume-FE'; git pull origin main } else { New-Item -ItemType Directory -Path 'C:\projects' -Force; Set-Location 'C:\projects'; git clone https://gitea.sashabayda.ca/Bayda77/digital-resume-FE.git }; Write-Host '=== Stopping container ==='; docker stop resume-frontend; docker rm resume-frontend; Write-Host '=== Building image ==='; Set-Location 'C:\projects\digital-resume-FE'; docker build -t resume-frontend:latest .; Write-Host '=== Running container ==='; docker run -d --name resume-frontend --restart unless-stopped -p 3001:80 resume-frontend:latest; Write-Host '=== Verifying ==='; docker ps -a --filter name=resume-frontend"
|
powershell -ExecutionPolicy Bypass -Command "Write-Host '=== Starting deployment ==='; if (Test-Path 'C:\projects\digital-resume-FE') { Set-Location 'C:\projects\digital-resume-FE'; git pull origin main } else { New-Item -ItemType Directory -Path 'C:\projects' -Force; Set-Location 'C:\projects'; git clone https://gitea.sashabayda.ca/Bayda77/digital-resume-FE.git }; Write-Host '=== Stopping container ==='; docker stop resume-frontend; docker rm resume-frontend; Write-Host '=== Building image ==='; Set-Location 'C:\projects\digital-resume-FE'; docker build -t resume-frontend:latest .; Write-Host '=== Running container ==='; docker run -d --name resume-frontend --network nginx_web --restart unless-stopped -p 3001:80 resume-frontend:latest; Write-Host '=== Verifying ==='; docker ps -a --filter name=resume-frontend"
|
||||||
|
|||||||
@@ -95,33 +95,6 @@ export default function Skills() {
|
|||||||
animate="visible"
|
animate="visible"
|
||||||
style={{ width: "100%", maxWidth: "1000px", padding: "0 20px" }}
|
style={{ width: "100%", maxWidth: "1000px", padding: "0 20px" }}
|
||||||
>
|
>
|
||||||
<div style={{ textAlign: "center", marginBottom: "40px" }}>
|
|
||||||
<motion.h1
|
|
||||||
style={{
|
|
||||||
fontSize: "clamp(32px, 5vw, 60px)",
|
|
||||||
fontFamily: "Roboto, sans-serif",
|
|
||||||
color: "white",
|
|
||||||
marginBottom: "20px",
|
|
||||||
fontWeight: 700,
|
|
||||||
textShadow: "0 4px 10px rgba(0, 0, 0, 0.3)"
|
|
||||||
}}
|
|
||||||
variants={itemVariants}
|
|
||||||
>
|
|
||||||
Skills
|
|
||||||
</motion.h1>
|
|
||||||
<motion.p
|
|
||||||
style={{
|
|
||||||
color: "rgba(255, 255, 255, 0.8)",
|
|
||||||
fontSize: "1.1rem",
|
|
||||||
maxWidth: "600px",
|
|
||||||
margin: "0 auto"
|
|
||||||
}}
|
|
||||||
variants={itemVariants}
|
|
||||||
>
|
|
||||||
My technical toolkit and professional competencies.
|
|
||||||
</motion.p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<motion.div variants={itemVariants} style={{ marginBottom: "50px" }}>
|
<motion.div variants={itemVariants} style={{ marginBottom: "50px" }}>
|
||||||
<h2 style={{ color: "white", borderBottom: "1px solid rgba(255,255,255,0.2)", paddingBottom: "10px", marginBottom: "25px" }}>
|
<h2 style={{ color: "white", borderBottom: "1px solid rgba(255,255,255,0.2)", paddingBottom: "10px", marginBottom: "25px" }}>
|
||||||
Technical Skills
|
Technical Skills
|
||||||
|
|||||||
Reference in New Issue
Block a user