Skip to content

Commit 5c76ce1

Browse files
committed
Build agentic.video marketing site
Single-page marketing site for the pixelml-av CLI tool. Terminal/hacker aesthetic with Chivo Mono, sharp corners, warm #FAF9F5 background. Sections: hero, how it works, features grid, command reference, provider compatibility, install CTA, footer. Framer Motion scroll animations. Vercel deploy workflow included.
1 parent 210ded6 commit 5c76ce1

13 files changed

Lines changed: 1193 additions & 88 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Deploy to Vercel
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
workflow_dispatch:
8+
9+
jobs:
10+
deploy:
11+
runs-on: ubuntu-latest
12+
environment: Production
13+
steps:
14+
- name: Trigger Vercel Deploy
15+
run: |
16+
curl -X POST "${{ secrets.VERCEL_DEPLOY_HOOK }}"

next.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { NextConfig } from "next";
22

33
const nextConfig: NextConfig = {
4-
/* config options here */
4+
trailingSlash: true,
55
};
66

77
export default nextConfig;

package-lock.json

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

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
"lint": "eslint"
1010
},
1111
"dependencies": {
12+
"framer-motion": "^12.34.0",
13+
"lucide-react": "^0.564.0",
1214
"next": "16.1.6",
1315
"react": "19.2.3",
1416
"react-dom": "19.2.3"

public/favicon.svg

Lines changed: 4 additions & 0 deletions
Loading

public/file.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

public/globe.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

public/next.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

public/vercel.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

public/window.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)