Skip to content

Commit 99292af

Browse files
committed
update deps, content, classes
1 parent 990b4a5 commit 99292af

7 files changed

Lines changed: 276 additions & 318 deletions

File tree

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,29 +12,29 @@
1212
"format": "prettier --write ."
1313
},
1414
"dependencies": {
15-
"@astrojs/check": "^0.9.4",
16-
"@astrojs/mdx": "^4.3.6",
17-
"@astrojs/rss": "^4.0.12",
15+
"@astrojs/check": "^0.9.5",
16+
"@astrojs/mdx": "^4.3.8",
17+
"@astrojs/rss": "^4.0.13",
1818
"@astrojs/sitemap": "^3.6.0",
1919
"@fontsource-variable/inter": "^5.2.8",
2020
"@fontsource/rubik": "^5.2.8",
2121
"@iconify-json/devicon": "^1.2.45",
2222
"@iconify-json/file-icons": "^1.2.2",
2323
"@iconify-json/skill-icons": "^1.2.3",
24-
"@iconify-json/vscode-icons": "^1.2.31",
25-
"astro": "^5.14.1",
24+
"@iconify-json/vscode-icons": "^1.2.33",
25+
"astro": "^5.15.1",
2626
"astro-icon": "^1.1.5",
2727
"sharp": "^0.34.4",
2828
"typescript": "^5.9.3"
2929
},
3030
"devDependencies": {
3131
"@tailwindcss/typography": "^0.5.19",
32-
"@tailwindcss/vite": "^4.1.14",
32+
"@tailwindcss/vite": "^4.1.16",
3333
"prettier": "^3.6.2",
3434
"prettier-plugin-astro": "^0.14.1",
35-
"prettier-plugin-classnames": "^0.8.4",
35+
"prettier-plugin-classnames": "^0.8.5",
3636
"prettier-plugin-merge": "^0.8.0",
37-
"prettier-plugin-tailwindcss": "^0.6.14",
38-
"tailwindcss": "^4.1.14"
37+
"prettier-plugin-tailwindcss": "^0.7.1",
38+
"tailwindcss": "^4.1.16"
3939
}
4040
}

pnpm-lock.yaml

Lines changed: 262 additions & 304 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/PortfolioPreview.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const { data, id } = Astro.props.project;
2727
from-black/65 to-40% px-5 py-3 text-white opacity-0 transition-opacity duration-300
2828
group-hover:opacity-100 group-focus-visible:opacity-100"
2929
>
30-
<div class="inline-block font-medium">
30+
<div class="font-medium">
3131
{data.title}
3232
</div>
3333
</div>

src/content/work/bp-pulse.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ img: /work/bp-pulse-thumb.webp
55
img_alt: bp pulse Website
66
description:
77
Lead front-end web development of bp pulse EV charging responsive website with over 80 block
8-
layouts and CMS integration.
8+
layouts and headless CMS integration.
99
category: frontend
1010
tags:
1111
- Bootstrap

src/content/work/dna.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pubDate: 2019-09-29 00:00:00 PST
44
img: /work/dna-thumb.webp
55
img_alt: Three DNA strands
66
description: |
7-
Three DNA strand curves and camera animated along a circular sine wave.
7+
Curves, particles and camera animated along a circular sine wave.
88
tags:
99
- Three.js
1010
---

src/pages/_blog/index.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ posts.sort((a, b) => b.data.pubDate.valueOf() - a.data.pubDate.valueOf());
1212
---
1313

1414
<BaseLayout>
15-
<div class="mx-auto max-w-screen-md">
15+
<div class="mx-auto max-w-3xl">
1616
{
1717
posts.length > 0 ? (
1818
<div class="grid grid-cols-2 gap-6">

src/pages/frontend.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import PortfolioPreview from '@/components/PortfolioPreview.astro';
55
import { SITE_DESCRIPTION } from '@/consts';
66
77
const projects = (await getCollection('work'))
8-
.filter((project) => project.data.category === 'frontend')
8+
.filter(({ data }) => data.category === 'frontend')
99
.sort((a, b) => b.data.pubDate.valueOf() - a.data.pubDate.valueOf());
1010
---
1111

0 commit comments

Comments
 (0)