Upload
Some checks failed
Main Branch / Run Prettier check (push) Has been cancelled
Main Branch / Run TypeScript check (push) Has been cancelled
Main Branch / Run Astro check (push) Has been cancelled
Main Branch / Run Percy check (push) Has been cancelled
Main Branch / Create release (push) Has been cancelled
Main Branch / Deploy to Netlify (push) Has been cancelled
Main Branch / Run Lighthouse check (push) Has been cancelled
19
.github/scripts/update-changelog.js
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
const fs = require('fs');
|
||||||
|
|
||||||
|
module.exports = (version, prNumber) => {
|
||||||
|
const changelog = fs.readFileSync('CHANGELOG.md', 'utf8');
|
||||||
|
const changelogLines = changelog.split('\n');
|
||||||
|
const lastChangeIndex = changelogLines.findIndex((line) => line.startsWith('## ['));
|
||||||
|
|
||||||
|
const textToAppend = `
|
||||||
|
## [${version}] - ${new Date().toISOString().split('T')[0]}
|
||||||
|
|
||||||
|
### Dependencies
|
||||||
|
|
||||||
|
- chore(deps): update dependencies ([details](https://github.com/KonradSzwarc/devscard/pull/${prNumber}))
|
||||||
|
`.trim();
|
||||||
|
|
||||||
|
changelogLines.splice(lastChangeIndex, 0, textToAppend + '\n');
|
||||||
|
|
||||||
|
fs.writeFileSync('CHANGELOG.md', changelogLines.join('\n'));
|
||||||
|
};
|
||||||
16
.github/workflows/create-issue-branch.yml
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
name: Create Issue Branch
|
||||||
|
|
||||||
|
on:
|
||||||
|
issues:
|
||||||
|
types: [assigned]
|
||||||
|
pull_request:
|
||||||
|
types: [closed]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
create_issue_branch_job:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Create Issue Branch
|
||||||
|
uses: robvanderleek/create-issue-branch@main
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
40
.github/workflows/dependency-update-changelog.yml
vendored
Normal file
|
|
@ -0,0 +1,40 @@
|
||||||
|
name: Modify changelog for dependency updates
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
types: [labeled]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
if: github.event.label.name == 'dependencies' && github.repository == 'KonradSzwarc/devscard'
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
||||||
|
- name: Get project information
|
||||||
|
id: projectinfo
|
||||||
|
uses: gregoranders/nodejs-project-info@v0.0.20
|
||||||
|
- name: Get next possible versions
|
||||||
|
id: semvers
|
||||||
|
uses: WyriHaximus/github-action-next-semvers@v1
|
||||||
|
with:
|
||||||
|
version: ${{ steps.projectinfo.outputs.version }}
|
||||||
|
- name: Update package.json version
|
||||||
|
uses: reedyuk/npm-version@1.2.1
|
||||||
|
with:
|
||||||
|
version: ${{ steps.semvers.outputs.patch }}
|
||||||
|
- name: Update CHANGELOG.md
|
||||||
|
uses: actions/github-script@v6
|
||||||
|
with:
|
||||||
|
script: |
|
||||||
|
const script = require('.github/scripts/update-changelog.js');
|
||||||
|
const version = '${{ steps.semvers.outputs.patch }}';
|
||||||
|
const prNumber = '${{ github.event.pull_request.number }}';
|
||||||
|
|
||||||
|
script(version, prNumber);
|
||||||
|
- name: Commit changes
|
||||||
|
uses: stefanzweifel/git-auto-commit-action@v4
|
||||||
136
.github/workflows/main-branch.yml
vendored
Normal file
|
|
@ -0,0 +1,136 @@
|
||||||
|
name: Main Branch
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [main]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
prettier:
|
||||||
|
name: Run Prettier check
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: 18
|
||||||
|
cache: npm
|
||||||
|
- name: Install dependencies
|
||||||
|
run: npm ci
|
||||||
|
- name: Run Prettier
|
||||||
|
run: npm run prettier:check
|
||||||
|
|
||||||
|
typescript:
|
||||||
|
name: Run TypeScript check
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: 18
|
||||||
|
cache: npm
|
||||||
|
- name: Install dependencies
|
||||||
|
run: npm ci
|
||||||
|
- name: Run TypeScript types check
|
||||||
|
run: npm run ts:check
|
||||||
|
|
||||||
|
astro:
|
||||||
|
name: Run Astro check
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: 18
|
||||||
|
cache: npm
|
||||||
|
- name: Install dependencies
|
||||||
|
run: npm ci
|
||||||
|
- name: Run Astro check
|
||||||
|
run: npm run astro:check
|
||||||
|
|
||||||
|
deploy:
|
||||||
|
name: Deploy to Netlify
|
||||||
|
needs: [prettier, typescript, astro]
|
||||||
|
if: github.repository == 'KonradSzwarc/devscard'
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
outputs:
|
||||||
|
deploy-url: ${{ steps.netlify.outputs.deploy-url }}
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: 18
|
||||||
|
cache: npm
|
||||||
|
- name: Install dependencies
|
||||||
|
run: npm ci
|
||||||
|
- name: Run Astro build command
|
||||||
|
run: npm run build
|
||||||
|
- name: Deploy to Netlify
|
||||||
|
id: netlify
|
||||||
|
uses: nwtgck/actions-netlify@v2
|
||||||
|
with:
|
||||||
|
publish-dir: dist
|
||||||
|
production-branch: main
|
||||||
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
production-deploy: true
|
||||||
|
env:
|
||||||
|
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
||||||
|
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
|
||||||
|
timeout-minutes: 1
|
||||||
|
|
||||||
|
percy:
|
||||||
|
name: Run Percy check
|
||||||
|
if: github.repository == 'KonradSzwarc/devscard'
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: 18
|
||||||
|
cache: npm
|
||||||
|
- name: Install dependencies
|
||||||
|
run: npm ci
|
||||||
|
- name: Run Astro build command
|
||||||
|
run: npm run build
|
||||||
|
env:
|
||||||
|
PUBLIC_APP_ENV: snapshot
|
||||||
|
- name: Percy check
|
||||||
|
env:
|
||||||
|
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}
|
||||||
|
run: npx percy snapshot dist/
|
||||||
|
|
||||||
|
lighthouse:
|
||||||
|
name: Run Lighthouse check
|
||||||
|
if: github.repository == 'KonradSzwarc/devscard'
|
||||||
|
needs: deploy
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Lighthouse check
|
||||||
|
uses: foo-software/lighthouse-check-action@master
|
||||||
|
with:
|
||||||
|
urls: ${{ needs.deploy.outputs.deploy-url }}
|
||||||
|
device: all
|
||||||
|
|
||||||
|
release:
|
||||||
|
name: Create release
|
||||||
|
if: github.repository == 'KonradSzwarc/devscard'
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Get project information
|
||||||
|
id: projectinfo
|
||||||
|
uses: gregoranders/nodejs-project-info@v0.0.20
|
||||||
|
- name: Get changelog entries
|
||||||
|
id: changelog_reader
|
||||||
|
uses: mindsers/changelog-reader-action@v2
|
||||||
|
with:
|
||||||
|
version: ${{ steps.projectinfo.outputs.version }}
|
||||||
|
- name: Create a new tag and release
|
||||||
|
uses: ncipollo/release-action@v1
|
||||||
|
with:
|
||||||
|
tag: ${{ steps.changelog_reader.outputs.version }}
|
||||||
|
name: Release ${{ steps.changelog_reader.outputs.version }}
|
||||||
|
body: ${{ steps.changelog_reader.outputs.changes }}
|
||||||
|
allowUpdates: true
|
||||||
188
.github/workflows/pull-request.yml
vendored
Normal file
|
|
@ -0,0 +1,188 @@
|
||||||
|
name: Pull Request
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
branches: [main]
|
||||||
|
types: [opened, edited, synchronize]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
lint-title:
|
||||||
|
name: Validate PR title
|
||||||
|
if: github.repository == 'KonradSzwarc/devscard'
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: amannn/action-semantic-pull-request@v5
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
requireScope: false
|
||||||
|
|
||||||
|
version:
|
||||||
|
name: Check package.json version
|
||||||
|
if: github.repository == 'KonradSzwarc/devscard'
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout PR branch
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
ref: ${{ github.event.pull_request.head.sha }}
|
||||||
|
- name: Get project information
|
||||||
|
id: projectinfo-current
|
||||||
|
uses: gregoranders/nodejs-project-info@v0.0.20
|
||||||
|
- name: Checkout main branch
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
ref: ${{ github.event.pull_request.base.sha }}
|
||||||
|
- name: Get project information
|
||||||
|
id: projectinfo-main
|
||||||
|
uses: gregoranders/nodejs-project-info@v0.0.20
|
||||||
|
- name: Get next possible versions
|
||||||
|
id: semvers
|
||||||
|
uses: WyriHaximus/github-action-next-semvers@v1
|
||||||
|
with:
|
||||||
|
version: ${{ steps.projectinfo-main.outputs.version }}
|
||||||
|
- name: Assert correct version bump
|
||||||
|
uses: nick-fields/assert-action@v1
|
||||||
|
with:
|
||||||
|
expected: ${{ steps.projectinfo-current.outputs.version }}
|
||||||
|
actual: 'Possible version bumps: ${{ steps.semvers.outputs.patch }}, ${{ steps.semvers.outputs.minor }}, ${{ steps.semvers.outputs.major }}'
|
||||||
|
comparison: contains
|
||||||
|
|
||||||
|
changelog:
|
||||||
|
name: Check changelog
|
||||||
|
if: github.repository == 'KonradSzwarc/devscard'
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
ref: ${{ github.event.pull_request.head.sha }}
|
||||||
|
fetch-depth: 0
|
||||||
|
- name: Get project information
|
||||||
|
id: projectinfo
|
||||||
|
uses: gregoranders/nodejs-project-info@v0.0.20
|
||||||
|
- name: Enforce changelog update
|
||||||
|
uses: dangoslen/changelog-enforcer@v3
|
||||||
|
with:
|
||||||
|
expectedLatestVersion: ${{ steps.projectinfo.outputs.version }}
|
||||||
|
- name: Get changelog entries
|
||||||
|
id: changelog_reader
|
||||||
|
uses: mindsers/changelog-reader-action@v2
|
||||||
|
with:
|
||||||
|
version: ${{ steps.projectinfo.outputs.version }}
|
||||||
|
- name: Assert correct changelog version
|
||||||
|
uses: nick-fields/assert-action@v1
|
||||||
|
with:
|
||||||
|
expected: ${{ steps.projectinfo.outputs.version }}
|
||||||
|
actual: ${{ steps.changelog_reader.outputs.version }}
|
||||||
|
|
||||||
|
prettier:
|
||||||
|
name: Run Prettier check
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: 18
|
||||||
|
cache: npm
|
||||||
|
- name: Install dependencies
|
||||||
|
run: npm ci
|
||||||
|
- name: Run Prettier
|
||||||
|
run: npm run prettier:check
|
||||||
|
|
||||||
|
typescript:
|
||||||
|
name: Run TypeScript check
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: 18
|
||||||
|
cache: npm
|
||||||
|
- name: Install dependencies
|
||||||
|
run: npm ci
|
||||||
|
- name: Run TypeScript types check
|
||||||
|
run: npm run ts:check
|
||||||
|
|
||||||
|
astro:
|
||||||
|
name: Run Astro check
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: 18
|
||||||
|
cache: npm
|
||||||
|
- name: Install dependencies
|
||||||
|
run: npm ci
|
||||||
|
- name: Run Astro check
|
||||||
|
run: npm run astro:check
|
||||||
|
|
||||||
|
percy:
|
||||||
|
name: Run Percy check
|
||||||
|
if: github.repository == 'KonradSzwarc/devscard'
|
||||||
|
needs: [prettier, typescript, astro, lint-title, version, changelog]
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: 18
|
||||||
|
cache: npm
|
||||||
|
- name: Install dependencies
|
||||||
|
run: npm ci
|
||||||
|
- name: Run Astro build command
|
||||||
|
run: npm run build
|
||||||
|
env:
|
||||||
|
PUBLIC_APP_ENV: snapshot
|
||||||
|
- name: Percy check
|
||||||
|
env:
|
||||||
|
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}
|
||||||
|
run: npx percy snapshot dist/
|
||||||
|
|
||||||
|
preview:
|
||||||
|
name: Create deploy preview
|
||||||
|
needs: [prettier, typescript, astro, lint-title, version, changelog]
|
||||||
|
if: github.repository == 'KonradSzwarc/devscard'
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
outputs:
|
||||||
|
deploy-url: ${{ steps.netlify.outputs.deploy-url }}
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: 18
|
||||||
|
cache: npm
|
||||||
|
- name: Install dependencies
|
||||||
|
run: npm ci
|
||||||
|
- name: Run Astro build command
|
||||||
|
run: npm run build
|
||||||
|
- name: Deploy to Netlify
|
||||||
|
id: netlify
|
||||||
|
uses: nwtgck/actions-netlify@v2
|
||||||
|
with:
|
||||||
|
publish-dir: dist
|
||||||
|
production-branch: main
|
||||||
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
alias: deploy-preview-${{ github.event.number }}
|
||||||
|
env:
|
||||||
|
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
||||||
|
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
|
||||||
|
timeout-minutes: 1
|
||||||
|
|
||||||
|
lighthouse:
|
||||||
|
name: Run Lighthouse check
|
||||||
|
if: github.repository == 'KonradSzwarc/devscard'
|
||||||
|
needs: preview
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Lighthouse check
|
||||||
|
uses: foo-software/lighthouse-check-action@master
|
||||||
|
with:
|
||||||
|
urls: ${{ needs.preview.outputs.deploy-url }}
|
||||||
|
gitAuthor: ${{ github.actor }}
|
||||||
|
gitBranch: ${{ github.ref }}
|
||||||
|
gitHubAccessToken: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
device: all
|
||||||
|
prCommentEnabled: true
|
||||||
|
prCommentSaveOld: false
|
||||||
50
.github/workflows/run-checks.yml
vendored
|
|
@ -1,50 +0,0 @@
|
||||||
name: Run Checks
|
|
||||||
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
branches: [main]
|
|
||||||
push:
|
|
||||||
branches: [main]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
prettier:
|
|
||||||
name: Run Prettier check
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
- uses: actions/setup-node@v3
|
|
||||||
with:
|
|
||||||
node-version: 18
|
|
||||||
cache: npm
|
|
||||||
- name: Install dependencies
|
|
||||||
run: npm ci
|
|
||||||
- name: Run Prettier
|
|
||||||
run: npm run prettier:check
|
|
||||||
|
|
||||||
typescript:
|
|
||||||
name: Run TypeScript check
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
- uses: actions/setup-node@v3
|
|
||||||
with:
|
|
||||||
node-version: 18
|
|
||||||
cache: npm
|
|
||||||
- name: Install dependencies
|
|
||||||
run: npm ci
|
|
||||||
- name: Run TypeScript types check
|
|
||||||
run: npm run ts:check
|
|
||||||
|
|
||||||
astro:
|
|
||||||
name: Run Astro check
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
- uses: actions/setup-node@v3
|
|
||||||
with:
|
|
||||||
node-version: 18
|
|
||||||
cache: npm
|
|
||||||
- name: Install dependencies
|
|
||||||
run: npm ci
|
|
||||||
- name: Run Astro check
|
|
||||||
run: npm run astro:check
|
|
||||||
|
|
@ -31,4 +31,4 @@ To learn how to set up your resume, go to:
|
||||||
|
|
||||||
To see an example CV, visit the link below:
|
To see an example CV, visit the link below:
|
||||||
|
|
||||||
[devscard-resume.pages.dev](https://devscard-resume.pages.dev)
|
[https://devscard.netlify.app](https://devscard.netlify.app/)
|
||||||
|
|
|
||||||
|
|
@ -11,5 +11,5 @@
|
||||||
|
|
||||||
## External links
|
## External links
|
||||||
|
|
||||||
- [Example resume](https://devscard-resume.pages.dev)
|
- [Example resume](https://devscard.netlify.app)
|
||||||
- [GitHub repository](https://github.com/KonradSzwarc/devscard)
|
- [GitHub repository](https://github.com/KonradSzwarc/devscard)
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,9 @@
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"postinstall": "npm run generate-favicons",
|
"postinstall": "npm run generate-favicons",
|
||||||
"dev": "astro dev",
|
"dev": "astro dev",
|
||||||
"prebuild": "move-file ./src/pages/pdf.astro ./src/pages/_pdf.astro && npm run generate-favicons",
|
"prebuild": "npm run generate-favicons",
|
||||||
"build": "astro build",
|
"__prebuild": "move-file ./src/pages/pdf.astro ./src/pages/_pdf.astro && npm run generate-favicons",
|
||||||
|
"build": "npm run generate-favicons && astro build",
|
||||||
"postbuild": "move-file ./src/pages/_pdf.astro ./src/pages/pdf.astro",
|
"postbuild": "move-file ./src/pages/_pdf.astro ./src/pages/pdf.astro",
|
||||||
"preview": "astro preview",
|
"preview": "astro preview",
|
||||||
"generate-pdf": "ts-node scripts/generate-pdf.ts",
|
"generate-pdf": "ts-node scripts/generate-pdf.ts",
|
||||||
|
|
@ -65,5 +66,6 @@
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/KonradSzwarc/devscard/issues"
|
"url": "https://github.com/KonradSzwarc/devscard/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/KonradSzwarc/devscard#readme"
|
"homepage": "https://github.com/KonradSzwarc/devscard#readme",
|
||||||
|
"packageManager": "pnpm@9.7.0+sha512.dc09430156b427f5ecfc79888899e1c39d2d690f004be70e05230b72cb173d96839587545d09429b55ac3c429c801b4dc3c0e002f653830a420fa2dd4e3cf9cf"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
BIN
public/cv.pdf
|
Before Width: | Height: | Size: 44 KiB |
|
Before Width: | Height: | Size: 70 KiB |
|
Before Width: | Height: | Size: 31 KiB |
|
Before Width: | Height: | Size: 43 KiB |
|
Before Width: | Height: | Size: 7 KiB |
|
Before Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 33 KiB |
|
Before Width: | Height: | Size: 9.4 KiB |
|
Before Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 800 B |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 36 KiB |
|
Before Width: | Height: | Size: 28 KiB |
|
Before Width: | Height: | Size: 40 KiB |
|
Before Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 5.4 KiB |
|
Before Width: | Height: | Size: 134 KiB |
|
Before Width: | Height: | Size: 73 KiB |
|
Before Width: | Height: | Size: 151 KiB |
|
Before Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 38 KiB |
BIN
src/assets/logos/sfsu.png
Normal file
|
After Width: | Height: | Size: 6.4 KiB |
BIN
src/assets/logos/sfusd.png
Normal file
|
After Width: | Height: | Size: 4.9 KiB |
BIN
src/assets/logos/vcu.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 13 KiB |
BIN
src/assets/my-image-default.jpeg
Normal file
|
After Width: | Height: | Size: 4.6 KiB |
|
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 72 KiB |
BIN
src/assets/portfolio/jaws-certificate.png
Normal file
|
After Width: | Height: | Size: 90 KiB |
BIN
src/assets/portfolio/jaws.png
Normal file
|
After Width: | Height: | Size: 9 KiB |
|
Before Width: | Height: | Size: 111 KiB |
|
Before Width: | Height: | Size: 38 KiB |
|
Before Width: | Height: | Size: 183 KiB |
|
Before Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 38 KiB |
|
Before Width: | Height: | Size: 20 KiB |
BIN
src/assets/portfolio/tt-certificate.png
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
src/assets/portfolio/tt.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 40 KiB |
|
Before Width: | Height: | Size: 40 KiB |
|
Before Width: | Height: | Size: 112 KiB |
|
|
@ -5,20 +5,20 @@ import type { ReadonlyDeep } from 'type-fest';
|
||||||
const config = {
|
const config = {
|
||||||
i18n: {
|
i18n: {
|
||||||
locale: enUS,
|
locale: enUS,
|
||||||
dateFormat: 'MMMM yyyy',
|
dateFormat: 'MMM yyyy',
|
||||||
translations: {
|
translations: {
|
||||||
now: 'now',
|
now: 'Present',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
meta: {
|
meta: {
|
||||||
title: 'Mark Freeman - Senior React Developer',
|
title: 'Juyoung Lee - Resume',
|
||||||
description:
|
description: 'Resume about Juyoung Lee',
|
||||||
'Lorem ipsum dolor sit amet, consectetur adipiscing elit. In sodales ac dui at vestibulum. In condimentum metus id dui tincidunt, in blandit mi vehicula.',
|
|
||||||
faviconPath: '/src/assets/my-image.jpeg',
|
faviconPath: '/src/assets/my-image.jpeg',
|
||||||
},
|
},
|
||||||
pdf: {
|
pdf: {
|
||||||
footer:
|
footer:
|
||||||
'I hereby give consent for my personal data included in my application to be processed for the purposes of the recruitment process.',
|
//'I hereby give consent for my personal data included in my application to be processed for the purposes of the recruitment process.',
|
||||||
|
'',
|
||||||
},
|
},
|
||||||
} as const satisfies ReadonlyDeep<Config>;
|
} as const satisfies ReadonlyDeep<Config>;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,10 @@ link({ name: '...', url: '...' }) — returns link object with a custom name.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// GENERAL
|
// GENERAL
|
||||||
|
export const tiktok = createLinkFactory({
|
||||||
|
name: 'TikTok',
|
||||||
|
icon: 'fa6-brands:tiktok',
|
||||||
|
});
|
||||||
|
|
||||||
export const facebook = createLinkFactory({
|
export const facebook = createLinkFactory({
|
||||||
name: 'Facebook',
|
name: 'Facebook',
|
||||||
|
|
|
||||||
|
|
@ -18,6 +18,83 @@ skill({ description: '...' }) — returns skill with a description displayed whe
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
export const python = createSkillFactory({
|
||||||
|
name: 'Python',
|
||||||
|
icon: 'simple-icons:python',
|
||||||
|
iconColor: '#3776AB',
|
||||||
|
url: '#',
|
||||||
|
});
|
||||||
|
|
||||||
|
export const mysql = createSkillFactory({
|
||||||
|
name: 'MySQL',
|
||||||
|
icon: 'simple-icons:mysql',
|
||||||
|
iconColor: '#4479A1',
|
||||||
|
url: '#',
|
||||||
|
});
|
||||||
|
|
||||||
|
export const coldfusion = createSkillFactory({
|
||||||
|
name: 'ColdFusion',
|
||||||
|
icon: 'simple-icons:c',
|
||||||
|
iconColor: '#77a8f7',
|
||||||
|
url: '#',
|
||||||
|
});
|
||||||
|
|
||||||
|
export const dreamweaver = createSkillFactory({
|
||||||
|
name: 'Dreamweaver',
|
||||||
|
icon: 'simple-icons:adobedreamweaver',
|
||||||
|
iconColor: '#FF61F6',
|
||||||
|
url: '#',
|
||||||
|
});
|
||||||
|
|
||||||
|
export const jquery = createSkillFactory({
|
||||||
|
name: 'jQuery',
|
||||||
|
icon: 'simple-icons:jquery',
|
||||||
|
iconColor: '#0769AD',
|
||||||
|
url: '#',
|
||||||
|
});
|
||||||
|
|
||||||
|
export const bootstrap = createSkillFactory({
|
||||||
|
name: 'Bootstrap',
|
||||||
|
icon: 'simple-icons:bootstrap',
|
||||||
|
iconColor: '#7952B3',
|
||||||
|
url: '#',
|
||||||
|
});
|
||||||
|
|
||||||
|
export const html = createSkillFactory({
|
||||||
|
name: 'HTML',
|
||||||
|
icon: 'simple-icons:html5',
|
||||||
|
iconColor: '#E34F26',
|
||||||
|
url: '#',
|
||||||
|
});
|
||||||
|
|
||||||
|
export const css = createSkillFactory({
|
||||||
|
name: 'CSS',
|
||||||
|
icon: 'simple-icons:css3',
|
||||||
|
iconColor: '#1572B6',
|
||||||
|
url: '#',
|
||||||
|
});
|
||||||
|
|
||||||
|
export const javascript = createSkillFactory({
|
||||||
|
name: 'JavaScript',
|
||||||
|
icon: 'simple-icons:javascript',
|
||||||
|
iconColor: '#dec81b',
|
||||||
|
url: '#',
|
||||||
|
});
|
||||||
|
|
||||||
|
export const java = createSkillFactory({
|
||||||
|
name: 'Java',
|
||||||
|
icon: 'simple-icons:coffeescript',
|
||||||
|
iconColor: '#2F2625',
|
||||||
|
url: '#',
|
||||||
|
});
|
||||||
|
|
||||||
|
export const processing = createSkillFactory({
|
||||||
|
name: 'Processing',
|
||||||
|
icon: 'simple-icons:processingfoundation',
|
||||||
|
iconColor: '#006699',
|
||||||
|
url: '#',
|
||||||
|
});
|
||||||
|
|
||||||
export const apolloGraphql = createSkillFactory({
|
export const apolloGraphql = createSkillFactory({
|
||||||
name: 'Apollo GraphQL',
|
name: 'Apollo GraphQL',
|
||||||
icon: 'simple-icons:apollographql',
|
icon: 'simple-icons:apollographql',
|
||||||
|
|
|
||||||
|
|
@ -11,13 +11,22 @@ const educationSectionData = {
|
||||||
},
|
},
|
||||||
diplomas: [
|
diplomas: [
|
||||||
{
|
{
|
||||||
title: 'Information Technology',
|
title: 'Master of Science (M.S.) in Engineering, Concentration in Aerospace Engineering',
|
||||||
institution: 'Wrocław University of Science and Technology',
|
institution: 'Virginia Commonwealth University',
|
||||||
image: import('@/assets/logos/wroclaw-university-of-technology.jpg'),
|
image: import('@/assets/logos/vcu.png'),
|
||||||
dates: [new Date('2014.10'), new Date('2016.07')],
|
dates: [new Date('2024-02'), null],
|
||||||
description: 'Master degree. Specialization in software development.',
|
description: '2024-',
|
||||||
links: [website({ url: '#' })],
|
links: [website({ url: 'https://egr.vcu.edu' })],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: 'Bachelor of Science (B.S.) in Computer Science 🎓',
|
||||||
|
institution: 'San Francisco State University',
|
||||||
|
image: import('@/assets/logos/sfsu.png'),
|
||||||
|
dates: [new Date('2018-02'), new Date('2020-02')],
|
||||||
|
description: 'Graduated: 2020',
|
||||||
|
links: [website({ url: 'https://cs.sfsu.edu' })],
|
||||||
|
},
|
||||||
|
/*
|
||||||
{
|
{
|
||||||
title: 'Information Technology',
|
title: 'Information Technology',
|
||||||
institution: 'Wrocław University of Science and Technology',
|
institution: 'Wrocław University of Science and Technology',
|
||||||
|
|
@ -25,7 +34,7 @@ const educationSectionData = {
|
||||||
dates: [new Date('2011.10'), new Date('2014.07')],
|
dates: [new Date('2011.10'), new Date('2014.07')],
|
||||||
description: "Bachelor's degree. Specialization in application development.",
|
description: "Bachelor's degree. Specialization in application development.",
|
||||||
links: [website({ url: '#' })],
|
links: [website({ url: '#' })],
|
||||||
},
|
},*/
|
||||||
],
|
],
|
||||||
} as const satisfies ReadonlyDeep<EducationSection>;
|
} as const satisfies ReadonlyDeep<EducationSection>;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
import type { ExperienceSection } from '@/types/sections/experience-section.types';
|
import type { ExperienceSection } from '@/types/sections/experience-section.types';
|
||||||
import type { ReadonlyDeep } from 'type-fest';
|
import type { ReadonlyDeep } from 'type-fest';
|
||||||
import { facebook, github, instagram, linkedin, twitter, website } from '../helpers/links';
|
import { facebook, github, tiktok, instagram, linkedin, twitter, website, youtube } from '../helpers/links';
|
||||||
import {
|
import {
|
||||||
chakraUi,
|
chakraUi,
|
||||||
eslint,
|
eslint,
|
||||||
|
|
@ -13,6 +13,17 @@ import {
|
||||||
tailwindCss,
|
tailwindCss,
|
||||||
typescript,
|
typescript,
|
||||||
vue,
|
vue,
|
||||||
|
mysql,
|
||||||
|
coldfusion,
|
||||||
|
html,
|
||||||
|
css,
|
||||||
|
javascript,
|
||||||
|
dreamweaver,
|
||||||
|
jquery,
|
||||||
|
bootstrap,
|
||||||
|
java,
|
||||||
|
processing,
|
||||||
|
python,
|
||||||
} from '../helpers/skills';
|
} from '../helpers/skills';
|
||||||
|
|
||||||
const experienceSectionData = {
|
const experienceSectionData = {
|
||||||
|
|
@ -23,60 +34,74 @@ const experienceSectionData = {
|
||||||
visible: true,
|
visible: true,
|
||||||
},
|
},
|
||||||
jobs: [
|
jobs: [
|
||||||
|
// {
|
||||||
|
// role: 'Founder',
|
||||||
|
// company: 'Mimory AI',
|
||||||
|
// image: import('@/assets/logos/mimory.jpg'),
|
||||||
|
// dates: [new Date('2025-05-02'), null], //null ], // Use null for 'Present'
|
||||||
|
// description: ``,
|
||||||
|
// tagsList: {
|
||||||
|
// title: '',
|
||||||
|
// tags: [],
|
||||||
|
// },
|
||||||
|
// links: [
|
||||||
|
// tiktok({ url: 'https://tiktok.com/@mimoryai' }),
|
||||||
|
// youtube({ url: 'https://youtube.com/@mimoryai' }),
|
||||||
|
// instagram({ url: 'https://instagram.com/mimoryai' }),
|
||||||
|
// ],
|
||||||
|
// },
|
||||||
{
|
{
|
||||||
role: 'Senior front-end developer',
|
role: 'Web Programmer/Systems Analyst',
|
||||||
company: 'Google',
|
company: 'National Training and Data Center',
|
||||||
image: import('@/assets/logos/google-logo.jpg'),
|
image: import('@/assets/logos/vcu.png'),
|
||||||
dates: [new Date('2020-02'), null],
|
dates: [new Date('2021-03-02'), null], //null ], // Use null for 'Present'
|
||||||
description: `
|
description: `
|
||||||
- In tristique vulputate augue vel egestas.
|
- Developed and maintained server-side modules for high-volume data systems funded by the Social Security Administration (SSA), implementing reliable data processing logic and improving system scalability across large datasets
|
||||||
- Quisque ac imperdiet tortor, at lacinia ex.
|
- Designed scalable backend systems aligned with evolving program requirements, improving long-term maintainability and supporting operational efficiency
|
||||||
- Duis vel ex hendrerit, commodo odio sed, aliquam enim.
|
- Implemented backend security and privacy enhancements in alignment with federal security standards (FISMA), improving data protection and system resilience
|
||||||
- Ut arcu nulla, tincidunt eget arcu eget, molestie vulputate nisi.
|
- Monitored application performance, diagnosing and resolving issues to ensure high system availability and reliable backend operations
|
||||||
- Nunc malesuada leo et est iaculis facilisis.
|
|
||||||
- Fusce eu urna ut magna malesuada fringilla.
|
|
||||||
`,
|
`,
|
||||||
tagsList: {
|
tagsList: {
|
||||||
title: 'Technologies',
|
title: '',
|
||||||
tags: [react(), nextJs(), typescript(), nx(), firebase()],
|
tags: [mysql(), coldfusion()],
|
||||||
},
|
},
|
||||||
links: [facebook({ url: '#' }), linkedin({ url: '#' })],
|
links: [], //[facebook({ url: '#' }), linkedin({ url: '#' })],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
role: 'React.js developer',
|
role: 'Web Accessibility Developer',
|
||||||
company: 'Facebook',
|
company: 'San Francisco State University',
|
||||||
image: import('@/assets/logos/facebook-logo.png'),
|
image: import('@/assets/logos/sfsu.png'),
|
||||||
dates: [new Date('2019-04'), new Date('2020-02')],
|
dates: [new Date('2018-08-02'), new Date('2020-05-02')],
|
||||||
description: `
|
description: `
|
||||||
- Aenean eget ultricies felis. Pellentesque dictum massa ut tellus eleifend, sed posuere massa mattis.
|
- Fixed HTML, CSS, JavaScript on campus and 3rd party websites and learning platform (iLearn), and maintained campus-wide best practices for meeting web accessibility requirements WCAG 2.0 (AA, AAA)
|
||||||
- Ut posuere massa lacus, eleifend molestie tortor auctor vel.
|
- Converted documents accessible using PDF Accessibility Checker, CommonLook, MS Word, and corrected errors in headings, reading order, images, tables, etc.
|
||||||
- Sed sed sollicitudin eros, id ultricies mi. Aliquam sodales elit vel ante tempor, non vehicula nibh facilisis.
|
- Created text and HTML-based content specific to the accessibility best practices
|
||||||
- Cras feugiat ultricies maximus. Aliquam tristique ex odio, ac semper urna accumsan a.
|
- Provided expert technical assistance and group training for campus-wide IT personnel (webmasters, newsletter editors)
|
||||||
|
- Documented defects using manual and automated testing tools, and collaborated with development teams to establish technical specifications
|
||||||
|
- Managed accessible computer stations, and proctored exams for students who need accommodation
|
||||||
|
- Tools used: debugging tools in Firefox/Chrome, Drupal, WordPress, JAWS, WAVE, ARIA, Colour Contrast Analyzer, Link Klipper, Compliance Sheriff (automated testing tool), etc.
|
||||||
`,
|
`,
|
||||||
tagsList: {
|
tagsList: {
|
||||||
title: 'Technologies',
|
title: '',
|
||||||
tags: [react(), reactQuery(), chakraUi(), eslint()],
|
tags: [html(), css(), javascript()],
|
||||||
},
|
},
|
||||||
links: [website({ url: '#' }), instagram({ url: '#' })],
|
links: [], //[website({ url: '#' }), instagram({ url: '#' })],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
role: 'Junior front-end developer',
|
role: 'Java Teaching Assistant',
|
||||||
company: 'GitLab',
|
company: 'San Francisco Unified School District',
|
||||||
image: import('@/assets/logos/gitlab-logo.png'),
|
image: import('@/assets/logos/sfusd.png'),
|
||||||
dates: [new Date('2016-09'), new Date('2019-04')],
|
dates: [new Date('2019-01-02'), new Date('2019-05-02')],
|
||||||
description: `
|
description: `
|
||||||
Nulla volutpat justo ante, rhoncus posuere massa egestas in:
|
- As part of the National Science Foundation-funded program (CS4SF), taught object-oriented Java programming in 9-12th grade classroom, leveraging knowledge acquired from university coursework
|
||||||
|
- Assisted teacher to help 30-40 students debug in-class coding assignments, and engaged students in learning activities
|
||||||
- Quisque pellentesque, dolor nec sollicitudin iaculis, sem velit consequat ligula, eget tempus ligula leo et est.
|
- Maintained positive, calm attitude and soft voice, and worked under teacher's direction to establish clean and comfortable classroom 🤗
|
||||||
- Maecenas ut elit sit amet nibh maximus condimentum in nec lorem. Pellentesque tincidunt odio vel leo suscipit, in interdum mi gravida.
|
|
||||||
|
|
||||||
Donec non vulputate augue 🤓
|
|
||||||
`,
|
`,
|
||||||
tagsList: {
|
tagsList: {
|
||||||
title: 'Technologies',
|
title: '',
|
||||||
tags: [vue(), tailwindCss(), pnpm()],
|
tags: [java(), processing()],
|
||||||
},
|
},
|
||||||
links: [twitter({ url: '#' }), github({ url: '#' })],
|
links: [], //[twitter({ url: '#' }), github({ url: '#' })],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
} as const satisfies ReadonlyDeep<ExperienceSection>;
|
} as const satisfies ReadonlyDeep<ExperienceSection>;
|
||||||
|
|
|
||||||
|
|
@ -10,12 +10,12 @@ import testimonialsData from './testimonials-section.data';
|
||||||
|
|
||||||
export const sections = {
|
export const sections = {
|
||||||
main: mainData,
|
main: mainData,
|
||||||
skills: skillsData,
|
//skills: skillsData,
|
||||||
experience: experienceData,
|
experience: experienceData,
|
||||||
portfolio: portfolioData,
|
portfolio: portfolioData,
|
||||||
education: educationData,
|
education: educationData,
|
||||||
testimonials: testimonialsData,
|
//testimonials: testimonialsData,
|
||||||
favorites: favoritesData,
|
//favorites: favoritesData,
|
||||||
} as const satisfies ReadonlyDeep<Sections>;
|
} as const satisfies ReadonlyDeep<Sections>;
|
||||||
|
|
||||||
export default sections;
|
export default sections;
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
import type { MainSection } from '@/types/sections/main-section.types';
|
import type { MainSection } from '@/types/sections/main-section.types';
|
||||||
import type { ReadonlyDeep } from 'type-fest';
|
import type { ReadonlyDeep } from 'type-fest';
|
||||||
import { facebook, github, linkedin, twitter } from '../helpers/links';
|
import { facebook, github, linkedin, twitter, website } from '../helpers/links';
|
||||||
|
|
||||||
const mainSectionData = {
|
const mainSectionData = {
|
||||||
config: {
|
config: {
|
||||||
|
|
@ -10,30 +10,35 @@ const mainSectionData = {
|
||||||
visible: true,
|
visible: true,
|
||||||
},
|
},
|
||||||
image: import('@/assets/my-image.jpeg'),
|
image: import('@/assets/my-image.jpeg'),
|
||||||
fullName: 'Mark Freeman',
|
fullName: 'Jay Lee',
|
||||||
role: 'Senior React Developer',
|
role: 'Software Engineer',
|
||||||
details: [
|
details: [
|
||||||
{ label: 'Phone', value: '605 475 6961', url: 'tel:605 475 6961' },
|
// { label: 'Phone', value: '605 475 6961', url: 'tel:605 475 6961' },
|
||||||
{ label: 'Email', value: 'mark.freeman.dev@gmail.com', url: 'mailto:mark.freeman.dev@gmail.com' },
|
{ label: 'Location', value: 'San Francisco, CA' },
|
||||||
{ label: 'From', value: 'Warsaw, Poland' },
|
{ label: 'Email', value: '✉️', url: 'https://go.juyung.com/email' },
|
||||||
{ label: 'Salary range', value: '18 000 - 25 000 PLN' },
|
// { label: 'Salary range', value: '18 000 - 25 000 PLN' },
|
||||||
],
|
],
|
||||||
pdfDetails: [
|
pdfDetails: [
|
||||||
{ label: 'Phone', value: '605 475 6961' },
|
// { label: 'Phone', value: '605 475 6961' },
|
||||||
{ label: 'Email', value: 'mark.freeman.dev@gmail.com' },
|
// { label: 'Email', value: 'mark.freeman.dev@gmail.com' },
|
||||||
{ label: 'LinkedIn', value: '/in/mark-freeman', url: 'https://linkedin.com' },
|
{ label: 'Website', value: 'juyung.com', url: 'https://juyung.com', fullRow: true },
|
||||||
{ label: 'GitHub', value: '/mark-freeman', url: 'https://github.com' },
|
{ label: 'GitHub', value: 'git.juyung.com', url: 'https://git.juyung.com' },
|
||||||
{ label: 'Website', value: 'mark-freeman-personal-website.com', url: '/', fullRow: true },
|
{ label: 'LinkedIn', value: 'job.juyung.com', url: 'https://job.juyung.com' },
|
||||||
],
|
],
|
||||||
description:
|
description: `I’m a software engineer. Previously, I worked as a web accessibility developer and taught Java programming. I have a Bachelor's in Computer Science and am currently pursuing a Master’s in Aerospace Engineering.`,
|
||||||
'Lorem ipsum dolor sit amet, consectetur **adipiscing elit**. In sodales ac dui at *vestibulum*. In condimentum metus id dui tincidunt, in blandit mi [vehicula](/). Nulla lacinia, erat sit amet elementum vulputate, lectus mauris volutpat mi, vitae accumsan metus elit ut nunc. Vestibulum lacinia enim eget eros fermentum scelerisque. Proin augue leo, posuere ut imperdiet vitae, fermentum eu ipsum. Sed sed neque sagittis, posuere urna nec, commodo leo. Pellentesque posuere justo vitae massa volutpat maximus.',
|
// 'Lorem ipsum dolor sit amet, consectetur **adipiscing elit**. In sodales ac dui at *vestibulum*. In condimentum metus id dui tincidunt, in blandit mi [vehicula](/). Nulla lacinia, erat sit amet elementum vulputate, lectus mauris volutpat mi, vitae accumsan metus elit ut nunc. Vestibulum lacinia enim eget eros fermentum scelerisque. Proin augue leo, posuere ut imperdiet vitae, fermentum eu ipsum. Sed sed neque sagittis, posuere urna nec, commodo leo. Pellentesque posuere justo vitae massa volutpat maximus.',
|
||||||
tags: [{ name: 'Open for freelance' }, { name: 'Available for mentoring' }, { name: 'Working on side project' }],
|
tags: [], //[{ name: 'Open for freelance' }, { name: 'Available for mentoring' }, { name: 'Working on side project' }],
|
||||||
action: {
|
// action: {
|
||||||
label: 'Download CV',
|
// label: 'Download Resume',
|
||||||
url: '/cv.pdf',
|
// url: '/cv.pdf',
|
||||||
downloadedFileName: 'CV-Mark_Freeman.pdf',
|
// downloadedFileName: 'Resume-Juyoung.pdf',
|
||||||
},
|
// },
|
||||||
links: [facebook({ url: '#' }), github({ url: '#' }), linkedin({ url: '#' }), twitter({ url: '#' })],
|
links: [
|
||||||
|
/*facebook({ url: '#' }),*/
|
||||||
|
website({ url: 'https://juyung.com' }),
|
||||||
|
github({ url: 'https://git.juyung.com' }),
|
||||||
|
linkedin({ url: 'https://job.juyung.com' }),
|
||||||
|
], // twitter({ url: '#' })],
|
||||||
} as const satisfies ReadonlyDeep<MainSection>;
|
} as const satisfies ReadonlyDeep<MainSection>;
|
||||||
|
|
||||||
export default mainSectionData;
|
export default mainSectionData;
|
||||||
|
|
|
||||||
|
|
@ -20,8 +20,8 @@ import {
|
||||||
|
|
||||||
const portfolioSectionData = {
|
const portfolioSectionData = {
|
||||||
config: {
|
config: {
|
||||||
title: 'Projects',
|
title: 'Certifications',
|
||||||
slug: 'projects',
|
slug: 'certifications',
|
||||||
icon: 'fa6-solid:rocket',
|
icon: 'fa6-solid:rocket',
|
||||||
visible: true,
|
visible: true,
|
||||||
screenshots: {
|
screenshots: {
|
||||||
|
|
@ -31,97 +31,58 @@ const portfolioSectionData = {
|
||||||
},
|
},
|
||||||
projects: [
|
projects: [
|
||||||
{
|
{
|
||||||
name: 'Golden Bulls',
|
name: 'Trusted Tester',
|
||||||
image: import('@/assets/portfolio/project-1.jpeg'),
|
image: import('@/assets/portfolio/tt.png'),
|
||||||
dates: [new Date('2020-03'), null],
|
dates: [new Date('2022-08-02'), null],
|
||||||
|
description: 'U.S. Department of Homeland Security',
|
||||||
details: [
|
details: [
|
||||||
{ label: 'Team size', value: '1 person' },
|
{ label: 'Credential ID', value: 'TT-2208-03281' },
|
||||||
{ label: 'My role', value: ['Front-end Developer', 'Designer'] },
|
// { label: 'Company', value: 'None' },
|
||||||
{ label: 'Company', value: 'None' },
|
// { label: 'Category', value: ['Web app', 'Open source'] },
|
||||||
{ label: 'Category', value: ['Web app', 'Open source'] },
|
|
||||||
],
|
],
|
||||||
pdfDetails: [
|
pdfDetails: [
|
||||||
{ label: 'Demo', value: 'https://golden-bulls-d73jd7.netlify.app', url: '#' },
|
// { label: 'Demo', value: 'https://golden-bulls-d73jd7.netlify.app', url: '#' },
|
||||||
{ label: 'Repository', value: 'https://github.com/mark-freeman/golden-bulls', url: '#' },
|
// { label: 'Repository', value: 'https://github.com/mark-freeman/golden-bulls', url: '#' },
|
||||||
],
|
],
|
||||||
screenshots: [
|
screenshots: [
|
||||||
{ src: import('@/assets/portfolio/project-1-screenshot-1.jpg'), alt: 'First screenshot' },
|
{ src: import('@/assets/portfolio/tt-certificate.png'), alt: 'Trusted Tester Certification' },
|
||||||
{ src: import('@/assets/portfolio/project-1-screenshot-2.jpg'), alt: 'Second screenshot' },
|
// { src: import('@/assets/portfolio/project-1-screenshot-2.jpg'), alt: 'Second screenshot' },
|
||||||
{ src: import('@/assets/portfolio/project-1-screenshot-3.jpg'), alt: 'Third screenshot' },
|
// { src: import('@/assets/portfolio/project-1-screenshot-3.jpg'), alt: 'Third screenshot' },
|
||||||
],
|
],
|
||||||
description:
|
//description: '',
|
||||||
'In tristique vulputate augue vel egestas. Quisque ac imperdiet tortor, at lacinia ex. Duis vel ex hendrerit, commodo odio sed, aliquam enim. Ut arcu nulla, tincidunt eget arcu eget, molestie vulputate nisi. Nunc malesuada leo et est iaculis facilisis.',
|
// 'In tristique vulputate augue vel egestas. Quisque ac imperdiet tortor, at lacinia ex. Duis vel ex hendrerit, commodo odio sed, aliquam enim. Ut arcu nulla, tincidunt eget arcu eget, molestie vulputate nisi. Nunc malesuada leo et est iaculis facilisis.',
|
||||||
tagsList: {
|
tagsList: {
|
||||||
title: 'Technologies',
|
title: '', //'Technologies',
|
||||||
tags: [nextJs(), sass(), pnpm(), eslint(), prettier()],
|
tags: [], //[nextJs(), sass(), pnpm(), eslint(), prettier()],
|
||||||
},
|
},
|
||||||
links: [mockups({ url: '#' }), demo({ url: '#' })],
|
links: [], //[mockups({ url: '#' }), demo({ url: '#' })],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'TruQuest',
|
name: 'JAWS Certified',
|
||||||
image: import('@/assets/portfolio/project-2.jpeg'),
|
image: import('@/assets/portfolio/jaws.png'),
|
||||||
dates: [new Date('2019-06'), new Date('2020-02')],
|
dates: [new Date('2022-08-02'), null],
|
||||||
|
description: 'Freedom Scientific',
|
||||||
details: [
|
details: [
|
||||||
{ label: 'Team size', value: '7 people' },
|
//{ label: 'Credential ID', value: 'TT-2208-03281' },
|
||||||
{ label: 'My role', value: ['Front-end Developer', 'Mobile Developer', 'Designer'] },
|
// { label: 'Company', value: 'None' },
|
||||||
{ label: 'Company', value: 'Facebook' },
|
// { label: 'Category', value: ['Web app', 'Open source'] },
|
||||||
{ label: 'Category', value: ['Web app', 'Mobile app'] },
|
|
||||||
],
|
],
|
||||||
pdfDetails: [
|
pdfDetails: [
|
||||||
{ label: 'Demo', value: 'https://tru-quest-ck7ea3.netlify.app', url: '#' },
|
// { label: 'Demo', value: 'https://golden-bulls-d73jd7.netlify.app', url: '#' },
|
||||||
{ label: 'Repository', value: 'https://github.com/mark-freeman/tru-quest', url: '#' },
|
// { label: 'Repository', value: 'https://github.com/mark-freeman/golden-bulls', url: '#' },
|
||||||
],
|
],
|
||||||
description:
|
screenshots: [
|
||||||
'Ut ultricies tortor at sodales aliquam. Vivamus metus ante, fringilla nec ligula in, suscipit rhoncus mauris. Praesent hendrerit velit odio, at accumsan urna faucibus convallis. Nunc at massa eget ligula volutpat dictum a sit amet libero. Vestibulum iaculis molestie maximus. In hac habitasse platea dictumst.',
|
{ src: import('@/assets/portfolio/jaws-certificate.png'), alt: 'JAWS Cerficiation' },
|
||||||
|
// { src: import('@/assets/portfolio/project-1-screenshot-2.jpg'), alt: 'Second screenshot' },
|
||||||
|
// { src: import('@/assets/portfolio/project-1-screenshot-3.jpg'), alt: 'Third screenshot' },
|
||||||
|
],
|
||||||
|
//description: '',
|
||||||
|
// 'In tristique vulputate augue vel egestas. Quisque ac imperdiet tortor, at lacinia ex. Duis vel ex hendrerit, commodo odio sed, aliquam enim. Ut arcu nulla, tincidunt eget arcu eget, molestie vulputate nisi. Nunc malesuada leo et est iaculis facilisis.',
|
||||||
tagsList: {
|
tagsList: {
|
||||||
title: 'Technologies',
|
title: '', //'Technologies',
|
||||||
tags: [react(), tailwindCss(), nestJs(), postgreSql()],
|
tags: [], //[nextJs(), sass(), pnpm(), eslint(), prettier()],
|
||||||
},
|
},
|
||||||
links: [mockups({ url: '#' }), demo({ url: '#' })],
|
links: [], //[mockups({ url: '#' }), demo({ url: '#' })],
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'Software Chasers',
|
|
||||||
image: import('@/assets/portfolio/project-3.jpeg'),
|
|
||||||
dates: [new Date('2018-01'), new Date('2020-12')],
|
|
||||||
details: [
|
|
||||||
{ label: 'Team size', value: '3 people' },
|
|
||||||
{ label: 'My role', value: ['Front-end Developer', 'Designer'] },
|
|
||||||
{ label: 'Company', value: 'None' },
|
|
||||||
{ label: 'Category', value: ['Web app', 'Open source'] },
|
|
||||||
],
|
|
||||||
pdfDetails: [
|
|
||||||
{ label: 'Demo', value: 'https://software-chasers-e82l8e.netlify.app', url: '#' },
|
|
||||||
{ label: 'Repository', value: 'https://github.com/mark-freeman/software-chasers', url: '#' },
|
|
||||||
],
|
|
||||||
description:
|
|
||||||
'Quisque id consectetur eros. In hac habitasse platea dictumst. Sed eu pulvinar orci. Mauris consequat, est in dignissim varius, neque nisl commodo mauris, id blandit risus justo eu nulla.',
|
|
||||||
tagsList: {
|
|
||||||
title: 'Technologies',
|
|
||||||
tags: [react(), chakraUi(), typescript(), nx(), pnpm()],
|
|
||||||
},
|
|
||||||
links: [website({ url: '#' }), github({ url: '#' })],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'Disco Ninjas',
|
|
||||||
image: import('@/assets/portfolio/project-4.jpeg'),
|
|
||||||
dates: [new Date('2016-05'), new Date('2018-07')],
|
|
||||||
details: [
|
|
||||||
{ label: 'Team size', value: '11 people' },
|
|
||||||
{ label: 'My role', value: 'Front-end Developer' },
|
|
||||||
{ label: 'Company', value: 'Google' },
|
|
||||||
{ label: 'Category', value: ['Mobile app', 'Open source'] },
|
|
||||||
],
|
|
||||||
pdfDetails: [
|
|
||||||
{ label: 'Demo', value: 'https://disco-ninjas-g321ol.netlify.app', url: '#' },
|
|
||||||
{ label: 'Repository', value: 'https://github.com/mark-freeman/disco-ninjas', url: '#' },
|
|
||||||
],
|
|
||||||
description:
|
|
||||||
'Praesent eu neque tortor. Vestibulum ac magna nisl. Vivamus massa sem, feugiat in pharetra non, convallis egestas purus. Ut consequat ullamcorper sem, in euismod nibh posuere ut. ',
|
|
||||||
tagsList: {
|
|
||||||
title: 'Technologies',
|
|
||||||
tags: [typescript(), jest(), firebase()],
|
|
||||||
},
|
|
||||||
links: [mockups({ url: '#' }), github({ url: '#' })],
|
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
} as const satisfies ReadonlyDeep<PortfolioSection>;
|
} as const satisfies ReadonlyDeep<PortfolioSection>;
|
||||||
|
|
|
||||||
|
|
@ -1,80 +0,0 @@
|
||||||
import type { SkillsSection } from '@/types/sections/skills-section.types';
|
|
||||||
import type { ReadonlyDeep } from 'type-fest';
|
|
||||||
import {
|
|
||||||
apolloGraphql,
|
|
||||||
astro,
|
|
||||||
chakraUi,
|
|
||||||
cypress,
|
|
||||||
eslint,
|
|
||||||
firebase,
|
|
||||||
mongoDb,
|
|
||||||
nestJs,
|
|
||||||
pnpm,
|
|
||||||
postgreSql,
|
|
||||||
prettier,
|
|
||||||
react,
|
|
||||||
sass,
|
|
||||||
supabase,
|
|
||||||
tailwindCss,
|
|
||||||
typescript,
|
|
||||||
} from '../helpers/skills';
|
|
||||||
|
|
||||||
const skillsSectionData = {
|
|
||||||
config: {
|
|
||||||
title: 'Skills',
|
|
||||||
slug: 'skills',
|
|
||||||
icon: 'fa6-solid:bars-progress',
|
|
||||||
visible: true,
|
|
||||||
},
|
|
||||||
skillSets: [
|
|
||||||
{
|
|
||||||
title: 'I already know',
|
|
||||||
skills: [
|
|
||||||
react({
|
|
||||||
level: 5,
|
|
||||||
description:
|
|
||||||
'Proin ut erat sed massa tempus suscipit. Mauris efficitur nunc sem, nec scelerisque ligula bibendum ut.',
|
|
||||||
}),
|
|
||||||
typescript({
|
|
||||||
level: 4,
|
|
||||||
description: 'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.',
|
|
||||||
}),
|
|
||||||
sass({
|
|
||||||
level: 4,
|
|
||||||
description: 'Nulla interdum pellentesque ultricies. Ut id eros commodo, ultrices ligula eu, elementum ante.',
|
|
||||||
}),
|
|
||||||
chakraUi({ level: 5 }),
|
|
||||||
tailwindCss({ level: 3 }),
|
|
||||||
prettier({ level: 5 }),
|
|
||||||
eslint({
|
|
||||||
level: 4,
|
|
||||||
description:
|
|
||||||
'Nulla tempor turpis at vehicula pharetra. Vestibulum tellus tortor, commodo et suscipit id, lobortis id nunc.',
|
|
||||||
}),
|
|
||||||
nestJs({
|
|
||||||
level: 3,
|
|
||||||
description:
|
|
||||||
'Praesent feugiat ultricies iaculis. In posuere vehicula odio, sed consequat velit porta viverra.',
|
|
||||||
}),
|
|
||||||
postgreSql({ level: 2 }),
|
|
||||||
mongoDb({ level: 1 }),
|
|
||||||
firebase({ level: 1 }),
|
|
||||||
pnpm({ level: 3 }),
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'I want to learn',
|
|
||||||
skills: [apolloGraphql(), astro(), supabase(), cypress()],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'I speak',
|
|
||||||
skills: [
|
|
||||||
{ icon: 'circle-flags:pl', name: 'Polish - native' },
|
|
||||||
{ icon: 'circle-flags:us', name: 'English - C1' },
|
|
||||||
{ icon: 'circle-flags:es-variant', name: 'Spanish - B1' },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
} as const satisfies ReadonlyDeep<SkillsSection>;
|
|
||||||
|
|
||||||
export default skillsSectionData;
|
|
||||||
|
|
@ -1,40 +0,0 @@
|
||||||
import type { TestimonialsSection } from '@/types/sections/testimonials-section.types';
|
|
||||||
import type { ReadonlyDeep } from 'type-fest';
|
|
||||||
import { github, linkedin, website } from '../helpers/links';
|
|
||||||
|
|
||||||
const testimonialsSectionData = {
|
|
||||||
config: {
|
|
||||||
title: 'Testimonials',
|
|
||||||
slug: 'testimonials',
|
|
||||||
icon: 'fa6-solid:comment',
|
|
||||||
visible: true,
|
|
||||||
},
|
|
||||||
testimonials: [
|
|
||||||
{
|
|
||||||
image: import('@/assets/testimonials/testimonial-1.jpeg'),
|
|
||||||
author: 'Howard Stewart',
|
|
||||||
relation: 'We work together as front-end developers at Google',
|
|
||||||
content:
|
|
||||||
'In nec mattis sem. Morbi purus lorem, euismod ac varius at, aliquet vitae augue. Pellentesque ut facilisis felis. In sed dui blandit, aliquet odio eu, elementum leo. In facilisis dapibus tortor ac volutpat. Cras cursus nec odio maximus elementum.',
|
|
||||||
links: [github({ url: '#' }), linkedin({ url: '#' })],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
image: import('@/assets/testimonials/testimonial-2.jpeg'),
|
|
||||||
author: 'Jean Richards',
|
|
||||||
relation: 'My project manager at GitLab',
|
|
||||||
content:
|
|
||||||
'Praesent nec congue elit. Vestibulum lobortis congue ipsum, a gravida mi tempus ac. Mauris aliquet purus nibh, vel varius turpis tempus non. Nullam eget ultricies orci. Quisque nulla ante, auctor eget varius ac, imperdiet nec magna.',
|
|
||||||
links: [linkedin({ url: '#' })],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
image: import('@/assets/testimonials/testimonial-3.jpeg'),
|
|
||||||
author: 'Jason Fisher',
|
|
||||||
relation: 'My customer for sidewing.com website',
|
|
||||||
content:
|
|
||||||
'Mauris tincidunt at purus vehicula porta. Mauris eget mollis turpis. Sed iaculis rutrum pharetra. Vivamus risus quam, suscipit et semper ut, aliquet ut tellus. Donec quis auctor nunc.',
|
|
||||||
links: [github({ url: '#' }), website({ url: '#' })],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
} as const satisfies ReadonlyDeep<TestimonialsSection>;
|
|
||||||
|
|
||||||
export default testimonialsSectionData;
|
|
||||||
|
|
@ -18,12 +18,16 @@ const { config, sections } = cv();
|
||||||
<ThemeToggle />
|
<ThemeToggle />
|
||||||
<main class="w-full max-w-5xl space-y-4 px-2 py-3 sm:space-y-6 sm:px-8 sm:py-12 lg:space-y-8 lg:py-20">
|
<main class="w-full max-w-5xl space-y-4 px-2 py-3 sm:space-y-6 sm:px-8 sm:py-12 lg:space-y-8 lg:py-20">
|
||||||
<MainSection {...sections.main} />
|
<MainSection {...sections.main} />
|
||||||
|
<!--
|
||||||
<SkillsSection {...sections.skills} />
|
<SkillsSection {...sections.skills} />
|
||||||
|
-->
|
||||||
<ExperienceSection {...sections.experience} />
|
<ExperienceSection {...sections.experience} />
|
||||||
<PortfolioSection {...sections.portfolio} />
|
<PortfolioSection {...sections.portfolio} />
|
||||||
<EducationSection {...sections.education} />
|
<EducationSection {...sections.education} />
|
||||||
|
<!--
|
||||||
<TestimonialsSection {...sections.testimonials} />
|
<TestimonialsSection {...sections.testimonials} />
|
||||||
<FavoritesSection {...sections.favorites} />
|
<FavoritesSection {...sections.favorites} />
|
||||||
|
-->
|
||||||
</main>
|
</main>
|
||||||
<Sidebar sections={sections} className="sticky top-8 mt-20" />
|
<Sidebar sections={sections} className="sticky top-8 mt-20" />
|
||||||
<script src="../web/scripts/initialize-tooltips.ts"></script>
|
<script src="../web/scripts/initialize-tooltips.ts"></script>
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@ const shouldRenderSection = (section: keyof typeof sections) => sections[section
|
||||||
</head>
|
</head>
|
||||||
<body class="flex flex-col bg-white p-[10mm] print:p-0">
|
<body class="flex flex-col bg-white p-[10mm] print:p-0">
|
||||||
{shouldRenderSection('main') && <MainSection {...sections.main} />}
|
{shouldRenderSection('main') && <MainSection {...sections.main} />}
|
||||||
{shouldRenderSection('skills') && <SkillsSection {...sections.skills} />}
|
<!-- {shouldRenderSection('skills') && <SkillsSection {...sections.skills} />} -->
|
||||||
{shouldRenderSection('experience') && <ExperienceSection {...sections.experience} />}
|
{shouldRenderSection('experience') && <ExperienceSection {...sections.experience} />}
|
||||||
{shouldRenderSection('portfolio') && <PortfolioSection {...sections.portfolio} />}
|
{shouldRenderSection('portfolio') && <PortfolioSection {...sections.portfolio} />}
|
||||||
{shouldRenderSection('education') && <EducationSection {...sections.education} />}
|
{shouldRenderSection('education') && <EducationSection {...sections.education} />}
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ export interface Props extends DownloadButton {}
|
||||||
const { url, downloadedFileName, label } = Astro.props;
|
const { url, downloadedFileName, label } = Astro.props;
|
||||||
|
|
||||||
const classes = /* tw */ {
|
const classes = /* tw */ {
|
||||||
main: 'inline-flex items-center px-4 h-10 rounded-md shadow-sm bg-primary-600 select-none cursor-pointer',
|
main: 'inline-flex items-center rounded-md shadow-sm bg-primary-600 select-none cursor-pointer text-base px-4 h-10 sm:text-sm sm:px-2 sm:h-8 lg:text-base lg:px-4 lg:h-10', // px-4 h-10',
|
||||||
hover: 'hover:bg-primary-700',
|
hover: 'hover:bg-primary-700',
|
||||||
active: 'active:translate-y-px',
|
active: 'active:translate-y-px',
|
||||||
focus: 'focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary-500',
|
focus: 'focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary-500',
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ const target = isHttpLink ? '_blank' : '_self';
|
||||||
<Typography variant="label">{label}:</Typography>
|
<Typography variant="label">{label}:</Typography>
|
||||||
{
|
{
|
||||||
url ? (
|
url ? (
|
||||||
<Typography as="a" href={url} target={target} class="underline">
|
<Typography as="a" href={url} target={target} class="no-underline">
|
||||||
{parsedValue}
|
{parsedValue}
|
||||||
</Typography>
|
</Typography>
|
||||||
) : (
|
) : (
|
||||||
|
|
|
||||||
|
|
@ -10,11 +10,11 @@ const { name, description, icon, iconColor, url } = Astro.props;
|
||||||
const className = /* tw */ 'flex h-6 w-fit items-center gap-x-1.5 rounded bg-gray-100 px-2.5 dark:bg-gray-700';
|
const className = /* tw */ 'flex h-6 w-fit items-center gap-x-1.5 rounded bg-gray-100 px-2.5 dark:bg-gray-700';
|
||||||
const customProps = url
|
const customProps = url
|
||||||
? ({
|
? ({
|
||||||
href: url,
|
// href: url,
|
||||||
as: 'a',
|
as: 'span', //'a'
|
||||||
target: '_blank',
|
// target: '_blank',
|
||||||
rel: 'noopener noreferrer',
|
// rel: 'noopener noreferrer',
|
||||||
class: `${className} hover:bg-gray-200 dark:hover:bg-gray-600`,
|
class: `${className} hover:bg-gray-200 dark:hover:bg-gray-600 cursor-pointer`,
|
||||||
} as const)
|
} as const)
|
||||||
: {
|
: {
|
||||||
class: className,
|
class: className,
|
||||||
|
|
|
||||||
|
|
@ -20,11 +20,11 @@ const variantToElement = {
|
||||||
} as const;
|
} as const;
|
||||||
|
|
||||||
export const variantToClassName: Record<TypographyVariant, string> /* tw */ = {
|
export const variantToClassName: Record<TypographyVariant, string> /* tw */ = {
|
||||||
'main-title': 'text-3xl sm:text-4xl font-extrabold text-gray-900 dark:text-gray-100',
|
'main-title': 'text-3xl sm:text-3xl font-bold text-gray-900 dark:text-gray-100',
|
||||||
'main-subtitle': 'text-base sm:text-lg font-medium text-gray-700 dark:text-gray-100',
|
'main-subtitle': 'text-base sm:text-lg font-medium text-gray-700 dark:text-gray-100',
|
||||||
'section-title': 'text-3xl font-extrabold text-gray-900 dark:text-gray-100',
|
'section-title': 'text-2xl font-bold text-gray-900 dark:text-gray-100', //text-3xl,
|
||||||
'section-subtitle': 'text-lg font-extrabold text-gray-900 dark:text-gray-100',
|
'section-subtitle': 'text-lg font-bold text-gray-900 dark:text-gray-100',
|
||||||
'item-title': 'text-xl font-extrabold text-gray-900 dark:text-gray-100',
|
'item-title': 'text-lg font-bold text-gray-900 dark:text-gray-100', //text-xl',
|
||||||
'item-subtitle-primary': 'text-base font-semibold leading-snug text-gray-900 dark:text-gray-100',
|
'item-subtitle-primary': 'text-base font-semibold leading-snug text-gray-900 dark:text-gray-100',
|
||||||
'item-subtitle-secondary': 'text-sm font-medium text-gray-700 dark:text-gray-100',
|
'item-subtitle-secondary': 'text-sm font-medium text-gray-700 dark:text-gray-100',
|
||||||
'tile-title': 'text-sm font-medium text-gray-700 dark:text-gray-200',
|
'tile-title': 'text-sm font-medium text-gray-700 dark:text-gray-200',
|
||||||
|
|
|
||||||
|
|
@ -21,4 +21,23 @@ const { meta, sections } = Astro.props;
|
||||||
<InitialHash sections={sections} />
|
<InitialHash sections={sections} />
|
||||||
<InitialTheme />
|
<InitialTheme />
|
||||||
<Fonts />
|
<Fonts />
|
||||||
|
|
||||||
|
<!-- Matomo -->
|
||||||
|
<script>
|
||||||
|
var _paq = window._paq = window._paq || [];
|
||||||
|
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
|
||||||
|
_paq.push(["setCookieDomain", "*.juyoun.gg"]);
|
||||||
|
_paq.push(['trackPageView']);
|
||||||
|
_paq.push(['enableLinkTracking']);
|
||||||
|
(function() {
|
||||||
|
var u="//radar.juyoun.gg/";
|
||||||
|
_paq.push(['setTrackerUrl', u+'matomo.php']);
|
||||||
|
_paq.push(['setSiteId', '1']);
|
||||||
|
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
||||||
|
g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
|
||||||
|
})();
|
||||||
|
</script>
|
||||||
|
<noscript><p><img referrerpolicy="no-referrer-when-downgrade" src="//radar.juyoun.gg/matomo.php?idsite=1&rec=1" style="border:0;" alt="" /></p></noscript>
|
||||||
|
<!-- End Matomo Code -->
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
|
|
||||||
|
|
@ -18,8 +18,9 @@ const { title, institution, dates, description, links, image } = Astro.props;
|
||||||
<div class="flex flex-col">
|
<div class="flex flex-col">
|
||||||
<Typography variant="item-title">{title}</Typography>
|
<Typography variant="item-title">{title}</Typography>
|
||||||
<Typography variant="item-subtitle-primary" class="mb-0.5">{institution}</Typography>
|
<Typography variant="item-subtitle-primary" class="mb-0.5">{institution}</Typography>
|
||||||
<Timestamp dates={dates} />
|
<!-- <Timestamp dates={dates} /> -->
|
||||||
</div>
|
<Typography variant="item-subtitle-secondary" class="mb-0.5">{description}</Typography>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{
|
{
|
||||||
links.length > 0 && (
|
links.length > 0 && (
|
||||||
|
|
@ -31,5 +32,5 @@ const { title, institution, dates, description, links, image } = Astro.props;
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
<Description content={description} />
|
<!--<Description content={description} /> -->
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@ const { action, config, description, details, fullName, image, links, role, tags
|
||||||
height={320}
|
height={320}
|
||||||
class="h-24 w-24 max-w-none rounded-lg sm:h-36 sm:w-36 md:h-52 md:w-52"
|
class="h-24 w-24 max-w-none rounded-lg sm:h-36 sm:w-36 md:h-52 md:w-52"
|
||||||
/>
|
/>
|
||||||
<DownloadButton {...action} />
|
<!--<DownloadButton {...action} />-->
|
||||||
</div>
|
</div>
|
||||||
<div class="flex w-full flex-col gap-5">
|
<div class="flex w-full flex-col gap-5">
|
||||||
<div class="flex w-full flex-col justify-between gap-2 sm:flex-row">
|
<div class="flex w-full flex-col justify-between gap-2 sm:flex-row">
|
||||||
|
|
|
||||||
|
|
@ -24,16 +24,20 @@ const screenshotsIcon = screenshotsConfig?.icon || 'fa6-solid:image';
|
||||||
const screenshotsTooltip = screenshotsConfig?.title || 'Screenshots';
|
const screenshotsTooltip = screenshotsConfig?.title || 'Screenshots';
|
||||||
---
|
---
|
||||||
|
|
||||||
<div class="flex flex-col gap-6">
|
<div class="flex flex-col">
|
||||||
<div class="flex flex-col gap-4">
|
<!-- gap-6">-->
|
||||||
<div class="flex gap-6">
|
<div class="flex flex-col">
|
||||||
|
<!-- gap-4">-->
|
||||||
|
<div class="flex">
|
||||||
|
<!-- gap-6">-->
|
||||||
<div class="flex w-full flex-col gap-4">
|
<div class="flex w-full flex-col gap-4">
|
||||||
<div class="flex gap-4">
|
<div class="flex gap-4">
|
||||||
<Thumbnail src={image} alt={alt} size="small" />
|
<Thumbnail src={image} alt={alt} size="small" />
|
||||||
<div class="flex w-full justify-between">
|
<div class="flex w-full justify-between">
|
||||||
<div>
|
<div>
|
||||||
<Typography variant="item-title">{name}</Typography>
|
<Typography variant="item-title">{name}</Typography>
|
||||||
<Timestamp dates={dates} />
|
<!--<Timestamp dates={dates} />-->
|
||||||
|
<Typography variant="item-subtitle-secondary">{description}</Typography>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex gap-2">
|
<div class="flex gap-2">
|
||||||
{links.map((link) => <LinkButton {...link} />)}
|
{links.map((link) => <LinkButton {...link} />)}
|
||||||
|
|
@ -50,7 +54,7 @@ const screenshotsTooltip = screenshotsConfig?.title || 'Screenshots';
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<Description content={description} class="col-span-3 col-start-1" />
|
<!--<Description content={description} class="col-span-3 col-start-1" /> -->
|
||||||
</div>
|
</div>
|
||||||
<TagsList {...tagsList} />
|
<TagsList {...tagsList} />
|
||||||
<div class="hidden" id={galleryId}>
|
<div class="hidden" id={galleryId}>
|
||||||
|
|
|
||||||
|
|
@ -1,29 +0,0 @@
|
||||||
---
|
|
||||||
import type { LevelledSkill } from '@/types/sections/skills-section.types';
|
|
||||||
import Icon from '@/web/components/icon.astro';
|
|
||||||
import Typography from '@/web/components/typography.astro';
|
|
||||||
import SkillLevel from './skill-level.astro';
|
|
||||||
|
|
||||||
export interface Props extends LevelledSkill {}
|
|
||||||
|
|
||||||
const { url, icon, iconColor, name, level, description } = Astro.props;
|
|
||||||
|
|
||||||
const IconWrapper = url ? 'a' : 'div';
|
|
||||||
---
|
|
||||||
|
|
||||||
<div class="flex flex-col gap-2">
|
|
||||||
<div class="flex h-5 items-center justify-between">
|
|
||||||
<IconWrapper class="flex h-5 gap-2" {...url && { href: url, target: '_blank', rel: 'noopener noreferrer' }}>
|
|
||||||
{icon && <Icon name={icon} color={iconColor} size={20} />}
|
|
||||||
<Typography variant="skill">{name}</Typography>
|
|
||||||
</IconWrapper>
|
|
||||||
{
|
|
||||||
description && (
|
|
||||||
<div class="flex h-3.5 w-3.5" data-tooltip={description} data-tooltip-placement="top">
|
|
||||||
<Icon name="fa6-solid:circle-info" color="#D1D5DB" size={14} />
|
|
||||||
</div>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
</div>
|
|
||||||
<SkillLevel skillLevel={level} />
|
|
||||||
</div>
|
|
||||||
|
|
@ -1,24 +0,0 @@
|
||||||
---
|
|
||||||
import type { SkillLevel } from '@/types/sections/skills-section.types';
|
|
||||||
|
|
||||||
export interface Props {
|
|
||||||
skillLevel: SkillLevel;
|
|
||||||
tileLevel: SkillLevel;
|
|
||||||
}
|
|
||||||
|
|
||||||
const { skillLevel, tileLevel } = Astro.props;
|
|
||||||
|
|
||||||
const isFilled = skillLevel >= tileLevel;
|
|
||||||
const classes = /* tw */ {
|
|
||||||
filled: 'bg-gray-500 dark:bg-gray-300',
|
|
||||||
empty: 'bg-gray-200 dark:bg-gray-500',
|
|
||||||
};
|
|
||||||
---
|
|
||||||
|
|
||||||
<div
|
|
||||||
class:list={[
|
|
||||||
'w-9 h-2 last:rounded-l-none last:rounded-r-sm first:rounded-l-sm first:rounded-r-none',
|
|
||||||
isFilled ? classes.filled : classes.empty,
|
|
||||||
]}
|
|
||||||
>
|
|
||||||
</div>
|
|
||||||
|
|
@ -1,16 +0,0 @@
|
||||||
---
|
|
||||||
import type { SkillLevel } from '@/types/sections/skills-section.types';
|
|
||||||
import SkillLevelTile from './skill-level-tile.astro';
|
|
||||||
|
|
||||||
export interface Props {
|
|
||||||
skillLevel: SkillLevel;
|
|
||||||
}
|
|
||||||
|
|
||||||
const { skillLevel } = Astro.props;
|
|
||||||
|
|
||||||
const levels = [1, 2, 3, 4, 5] as const;
|
|
||||||
---
|
|
||||||
|
|
||||||
<div class="flex gap-1">
|
|
||||||
{levels.map((tileLevel) => <SkillLevelTile tileLevel={tileLevel} skillLevel={skillLevel} />)}
|
|
||||||
</div>
|
|
||||||
|
|
@ -1,32 +0,0 @@
|
||||||
---
|
|
||||||
import type { LevelledSkill as LevelledSkillType, SkillSet } from '@/types/sections/skills-section.types';
|
|
||||||
import TagsList from '@/web/components/tags-list.astro';
|
|
||||||
import Typography from '@/web/components/typography.astro';
|
|
||||||
import LevelledSkill from './levelled-skill.astro';
|
|
||||||
|
|
||||||
export interface Props extends SkillSet {}
|
|
||||||
|
|
||||||
const { skills, title } = Astro.props;
|
|
||||||
|
|
||||||
const isLevelledSkillSection = (skills: Props['skills']): skills is LevelledSkillType[] => {
|
|
||||||
const firstSkill = skills[0];
|
|
||||||
if (!firstSkill) return false;
|
|
||||||
|
|
||||||
return 'level' in firstSkill && firstSkill.level !== undefined;
|
|
||||||
};
|
|
||||||
---
|
|
||||||
|
|
||||||
<div class="flex flex-col gap-3">
|
|
||||||
<Typography variant="section-subtitle">{title}</Typography>
|
|
||||||
{
|
|
||||||
isLevelledSkillSection(skills) ? (
|
|
||||||
<div class="flex flex-wrap gap-8">
|
|
||||||
{skills.map((skill) => (
|
|
||||||
<LevelledSkill {...skill} />
|
|
||||||
))}
|
|
||||||
</div>
|
|
||||||
) : (
|
|
||||||
<TagsList tags={skills} />
|
|
||||||
)
|
|
||||||
}
|
|
||||||
</div>
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
||||||
---
|
|
||||||
import type { SkillsSection } from '@/types/sections/skills-section.types';
|
|
||||||
import SectionCard from '@/web/components/section-card.astro';
|
|
||||||
import SkillSet from './skill-set.astro';
|
|
||||||
|
|
||||||
export interface Props extends SkillsSection {}
|
|
||||||
|
|
||||||
const { config, skillSets } = Astro.props;
|
|
||||||
---
|
|
||||||
|
|
||||||
<SectionCard {...config}>
|
|
||||||
<div class="flex flex-col gap-10">
|
|
||||||
{skillSets.map((skillSet) => <SkillSet {...skillSet} />)}
|
|
||||||
</div>
|
|
||||||
</SectionCard>
|
|
||||||
|
|
@ -1,33 +0,0 @@
|
||||||
---
|
|
||||||
import type { Testimonial } from '@/types/sections/testimonials-section.types';
|
|
||||||
import LinkButton from '@/web/components/link-button.astro';
|
|
||||||
import Typography from '@/web/components/typography.astro';
|
|
||||||
import Description from '@/web/components/description.astro';
|
|
||||||
import Thumbnail from '@/web/components/thumbnail.astro';
|
|
||||||
|
|
||||||
export interface Props extends Testimonial {}
|
|
||||||
|
|
||||||
const { author, content, image, links, relation } = Astro.props;
|
|
||||||
---
|
|
||||||
|
|
||||||
<div class="flex w-full flex-col gap-4">
|
|
||||||
<div class="flex justify-between">
|
|
||||||
<div class="flex flex-col gap-4 sm:flex-row">
|
|
||||||
<Thumbnail src={image} alt={author} size="small" />
|
|
||||||
<div>
|
|
||||||
<Typography variant="item-title">{author}</Typography>
|
|
||||||
<Typography variant="item-subtitle-secondary">{relation}</Typography>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{
|
|
||||||
links.length > 0 && (
|
|
||||||
<div class="flex gap-3">
|
|
||||||
{links.map((link) => (
|
|
||||||
<LinkButton {...link} />
|
|
||||||
))}
|
|
||||||
</div>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
</div>
|
|
||||||
<Description content={content} />
|
|
||||||
</div>
|
|
||||||
|
|
@ -1,17 +0,0 @@
|
||||||
---
|
|
||||||
import type { TestimonialsSection } from '@/types/sections/testimonials-section.types';
|
|
||||||
import DividedList from '@/web/components/divided-list.astro';
|
|
||||||
import Divider from '@/web/components/divider.astro';
|
|
||||||
import SectionCard from '@/web/components/section-card.astro';
|
|
||||||
import Testimonial from './testimonial.astro';
|
|
||||||
|
|
||||||
export interface Props extends TestimonialsSection {}
|
|
||||||
|
|
||||||
const { testimonials, config } = Astro.props;
|
|
||||||
---
|
|
||||||
|
|
||||||
<SectionCard {...config}>
|
|
||||||
<DividedList>
|
|
||||||
{testimonials.flatMap((testimonial) => [<Testimonial {...testimonial} />, <Divider />])}
|
|
||||||
</DividedList>
|
|
||||||
</SectionCard>
|
|
||||||
|
|
@ -10,7 +10,7 @@ module.exports = {
|
||||||
transparent: 'transparent',
|
transparent: 'transparent',
|
||||||
current: 'currentColor',
|
current: 'currentColor',
|
||||||
white: colors.white,
|
white: colors.white,
|
||||||
primary: colors.indigo,
|
primary: colors.blue,
|
||||||
gray: colors.gray,
|
gray: colors.gray,
|
||||||
},
|
},
|
||||||
extend: {
|
extend: {
|
||||||
|
|
|
||||||