Skip to content
Closed
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
11 changes: 7 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: npm

- name: Install dependencies
run: npm ci
Expand All @@ -32,7 +33,9 @@ jobs:
VITE_EMAILJS_PUBLIC_KEY: ${{ secrets.VITE_EMAILJS_PUBLIC_KEY }}

- name: Deploy to gh-pages
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: ./dist
cname: anthonyfinney.is-a.dev
41 changes: 39 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,46 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Soshie Finney — Full-Stack Developer</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Portfolio of Soshie Finney — web apps, skills, and contact."
/>
<meta name="theme-color" content="#0b1220" />

<meta property="og:type" content="website" />
<meta
property="og:title"
content="Soshie Finney — Full-Stack Developer"
/>
<meta
property="og:description"
content="view projects, skills, and contact."
/>
<meta property="og:url" content="https://anthonyfinney.is-a.dev/" />
<meta
property="og:image"
content="https://anthonyfinney.is-a.dev/assets/social-preview.png"
/>
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />

<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="Soshie Finney — Full-Stack Developer"
/>
<meta
name="twitter:description"
content="view projects, skills, and contact."
/>
<meta
name="twitter:image"
content="https://anthonyfinney.is-a.dev/assets/social-preview.png"
/>

<link
rel="icon"
type="image/svg+xml"
Expand Down Expand Up @@ -33,8 +72,6 @@
href="https://fonts.googleapis.com/css2?family=Mukta&display=swap"
rel="stylesheet"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Soshie Finney | Developer Portfolio</title>
</head>
<body>
<div id="root"></div>
Expand Down
Binary file modified public/assets/Soshie_Finney_Full_Stack_Developer_CV.pdf
Binary file not shown.
Binary file added public/assets/social-preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 3 additions & 2 deletions src/components/hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ export default function Hero({

<div className="max-w-2xl text-center md:text-left">
<h1 className="text-5xl md:text-7xl font-extrabold text-white leading-tight">
Hi, I&apos;m <span> </span>
<span>Hi, I&apos;m</span>
<br />
<span className="inline-block align-baseline lg:min-w-[8ch] font-fallback">
{"{"}
<TextType
Expand All @@ -48,7 +49,7 @@ export default function Hero({
</h1>

<p className="mt-4 text-lg md:text-2xl text-gray-200">
Software Developer
Full-Stack Developer
</p>
<p className="mt-4 text-sm md:text-base text-gray-200">
Trying to make everything
Expand Down