Skip to content

Commit 68498b0

Browse files
aivukclaude
andcommitted
Launch Fuzue Tech website
Static site with brutalist design, dark/light theme, EN/IT/PL/PT i18n, local fonts, and GitHub Actions deploy workflow. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
0 parents  commit 68498b0

14 files changed

Lines changed: 1936 additions & 0 deletions

.github/workflows/deploy.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
push:
5+
branches: [main]
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: read
10+
pages: write
11+
id-token: write
12+
13+
concurrency:
14+
group: pages
15+
cancel-in-progress: true
16+
17+
jobs:
18+
deploy:
19+
environment:
20+
name: github-pages
21+
url: ${{ steps.deployment.outputs.page_url }}
22+
runs-on: ubuntu-latest
23+
steps:
24+
- name: Checkout
25+
uses: actions/checkout@v4
26+
27+
- name: Setup Pages
28+
uses: actions/configure-pages@v4
29+
30+
- name: Upload artifact
31+
uses: actions/upload-pages-artifact@v3
32+
with:
33+
path: '.'
34+
35+
- name: Deploy to GitHub Pages
36+
id: deployment
37+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fuzue_tech_website.html
2+
fuzue_ftg_attribution_update.html
3+
.claude/

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
fuzue.tech

fonts/BigShouldersDisplay-700.ttf

66.9 KB
Binary file not shown.

fonts/BigShouldersDisplay-900.ttf

67.1 KB
Binary file not shown.

fonts/IBMPlexMono-400.ttf

126 KB
Binary file not shown.

fonts/IBMPlexMono-500.ttf

127 KB
Binary file not shown.

fonts/IBMPlexSans-300.ttf

201 KB
Binary file not shown.

fonts/IBMPlexSans-300italic.ttf

216 KB
Binary file not shown.

fonts/IBMPlexSans-400.ttf

200 KB
Binary file not shown.

0 commit comments

Comments
 (0)