Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
dab8b4e
Add TypeScript + Vite build setup
diantekyrie Jul 21, 2026
01f2281
Migrate site to Next.js with static export for GitHub Pages
diantekyrie Jul 21, 2026
7e47aaa
Fix Vercel 404: add vercel.json and remove trailingSlash
diantekyrie Jul 21, 2026
046fb3f
Remove placeholder publishing note from contact page
diantekyrie Jul 21, 2026
8b91ba9
Consistent nav logo + trust bar carousel with company logos
diantekyrie Jul 21, 2026
6c416f3
Redesign trust carousel: greywingsec-style stacked logo+name cards
diantekyrie Jul 21, 2026
c3ddf9a
Remove stray Windows desktop.ini from logos dir
diantekyrie Jul 21, 2026
c433967
Ignore Windows desktop.ini and Thumbs.db
diantekyrie Jul 21, 2026
e4545c1
Center carousel within page max-width
diantekyrie Jul 21, 2026
44207fb
Fix fonts, update logos with grayscale-to-color hover, rename Google
diantekyrie Jul 21, 2026
281f35f
Carousel: correct logos, purple Avid, bigger logos, remove names
diantekyrie Jul 21, 2026
0dbe2c5
Replace Avid logo with correct current branding (PNG)
diantekyrie Jul 21, 2026
336efc8
Remove stray avid_v2.svg test file
diantekyrie Jul 21, 2026
a68e495
Full mobile-responsive overhaul for all device sizes
diantekyrie Jul 21, 2026
7f0b083
Fix mobile bottom gap: move overflow-x to html, set bg on html element
diantekyrie Jul 21, 2026
97067e2
Fix contact page nav: section links route home, CTA becomes Home button
diantekyrie Jul 22, 2026
9a48fda
Remove placeholder metrics note from case studies
diantekyrie Jul 22, 2026
51640f0
Add sitemap.xml and robots.txt to fix Search Console canonical issue
diantekyrie Jul 23, 2026
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
16 changes: 14 additions & 2 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Deploy static site to Pages
name: Deploy Next.js site to Pages

on:
push:
Expand Down Expand Up @@ -29,10 +29,22 @@ jobs:
with:
enablement: true

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

- name: Install dependencies
run: npm ci

- name: Build
run: npm run build

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: .
path: ./out

deploy:
needs: build
Expand Down
22 changes: 16 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
public/
resources/
.hugo_build.lock

# OS / editor
/node_modules
/.pnp
.pnp.js
/coverage
/.next/
/out/
/build
.DS_Store
desktop.ini
Thumbs.db
.vscode/
*.pem
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.env*.local
.vercel
*.tsbuildinfo
next-env.d.ts
1 change: 0 additions & 1 deletion README.md

This file was deleted.

139 changes: 0 additions & 139 deletions contact.html

This file was deleted.

Loading