Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Images #72

Merged
merged 5 commits into from
Feb 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: mskelton/setup-pnpm@v3
with:
node-version: "22.x"
env:
COREPACK_INTEGRITY_KEYS: 0
- name: Lint
run: pnpm lint
- name: Check formatting
Expand All @@ -16,6 +20,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: mskelton/setup-pnpm@v3
with:
node-version: "22.x"
env:
COREPACK_INTEGRITY_KEYS: 0
- name: Type check
run: pnpm ts

Expand All @@ -26,6 +34,10 @@ jobs:
DATABASE_URL: file:./data/mskelton.db
steps:
- uses: mskelton/setup-pnpm@v3
with:
node-version: "22.x"
env:
COREPACK_INTEGRITY_KEYS: 0
- run: pnpm playwright install chromium --with-deps
- run: pnpm drizzle-kit push
- run: pnpm db:seed
Expand Down
2 changes: 1 addition & 1 deletion app/(main)/about/content.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ the happiest, and a little Rust sprinkled here and there doesn't hurt.

Outside of work, I'm a Wisconsin native who loves small-town life almost as
much as I like snow and winter. In my free time, I like working on my
house, spending time with my fiancé, and playing disc golf. My life is
house, spending time with my fiancée, and playing disc golf. My life is
dedicated to the service of Jesus and sharing the good news of the gospel
to the ends of the earth. My hope is for men and women to find in Jesus the
only true hope for this life, and the life to come.
2 changes: 1 addition & 1 deletion app/(main)/resume/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Fragment } from "react"
import { Container } from "components/Container"
import { PageTitle } from "components/PageTitle"
import { Prose } from "components/Prose"
import avatar from "images/avatar.jpg"
import avatar from "images/portrait.jpg"
import Date from "./Date"
import { roles } from "./roles"
import Skills from "./Skills"
Expand Down
Binary file removed app/images/avatar.jpg
Binary file not shown.
Binary file modified app/images/portrait.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion app/lib/posts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@ export async function getPostImage(slug: string) {
return fs.readFile(imagePath)
}

return fs.readFile(path.join(process.cwd(), "public/logo.jpg"))
return fs.readFile(path.join(process.cwd(), "app/images/portrait.jpg"))
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "mskelton.dev",
"description": "Source code for my personal website.",
"type": "module",
"packageManager": "pnpm@9.0.1",
"packageManager": "pnpm@9.15.5",
"scripts": {
"build": "next build",
"db:reindex": "curl -X POST http://localhost:3000/api/reindex",
Expand Down
Binary file modified public/favicon.ico
Binary file not shown.
Binary file removed public/logo.jpg
Binary file not shown.