Skip to content

Commit 0fe1441

Browse files
committed
update 1
1 parent 6a897c2 commit 0fe1441

File tree

128 files changed

+6703
-9169
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

128 files changed

+6703
-9169
lines changed

.claude/settings.local.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"permissions": {
3+
"allow": [
4+
"Bash(tree:*)"
5+
]
6+
}
7+
}

.eslintrc.json

Lines changed: 0 additions & 27 deletions
This file was deleted.

.github/workflows/deploy.yml

Lines changed: 19 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,37 @@
1-
name: Build Next.js app and deploy to GitHub Pages
1+
name: Deploy static site to GitHub Pages
22

33
on:
4+
push:
5+
branches: ["main"]
46
workflow_dispatch:
57

6-
push:
7-
branches: [ "main" ]
8+
permissions:
9+
contents: read
10+
pages: write
11+
id-token: write
12+
13+
concurrency:
14+
group: "pages"
15+
cancel-in-progress: false
816

917
jobs:
10-
build:
18+
deploy:
19+
environment:
20+
name: github-pages
21+
url: ${{ steps.deployment.outputs.page_url }}
1122
runs-on: ubuntu-latest
1223
steps:
13-
- name: Checkout code
24+
- name: Checkout
1425
uses: actions/checkout@v4
1526

16-
- name: Setup Node.js
17-
uses: actions/setup-node@v4
18-
with:
19-
node-version: "lts/*"
20-
21-
- name: Install dependencies
22-
run: npm install
23-
24-
- name: Build Next.js app
25-
run: npm run build
26-
env:
27-
CI: true
27+
- name: Setup Pages
28+
uses: actions/configure-pages@v4
2829

2930
- name: Upload artifact
3031
uses: actions/upload-pages-artifact@v3
3132
with:
32-
path: ./out
33+
path: '.'
3334

34-
deploy:
35-
needs: build
36-
permissions:
37-
pages: write
38-
id-token: write
39-
contents: read
40-
environment:
41-
name: github_pages
42-
url: ${{ steps.deployment.outputs.page_url }}
43-
runs-on: ubuntu-latest
44-
steps:
4535
- name: Deploy to GitHub Pages
4636
id: deployment
4737
uses: actions/deploy-pages@v4

.nojekyll

Whitespace-only changes.

.prettierrc.js

Lines changed: 0 additions & 7 deletions
This file was deleted.

404.html

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<meta name="robots" content="noindex">
7+
<title>Page Not Found - IXI Labs</title>
8+
9+
<!-- Preconnect to font providers -->
10+
<link rel="preconnect" href="https://fonts.googleapis.com">
11+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
12+
13+
<!-- Fonts -->
14+
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@500;600;700&display=swap" rel="stylesheet">
15+
16+
<link rel="stylesheet" href="/css/variables.css">
17+
<link rel="stylesheet" href="/css/main.css">
18+
<script>
19+
// Redirect URLs with .html extension to clean URLs
20+
(function() {
21+
const path = window.location.pathname;
22+
if (path.endsWith('.html')) {
23+
const cleanPath = path.replace('.html', '/');
24+
window.location.replace(cleanPath);
25+
}
26+
})();
27+
</script>
28+
</head>
29+
<body>
30+
<a href="#main-content" class="skip-to-main">Skip to main content</a>
31+
32+
<div class="grid-overlay" aria-hidden="true"></div>
33+
34+
<header>
35+
<nav aria-label="Main navigation">
36+
<ul role="list">
37+
<li><a href="/">Home</a></li>
38+
<li><a href="/technology/">Technology</a></li>
39+
<li><a href="/contact/">Contact</a></li>
40+
</ul>
41+
</nav>
42+
</header>
43+
44+
<main id="main-content" class="container">
45+
<section class="text-center">
46+
<h1>404 - Page Not Found</h1>
47+
<p>The page you're looking for doesn't exist.</p>
48+
<p><a href="/" class="button button-primary">Return to homepage</a></p>
49+
</section>
50+
</main>
51+
52+
<script src="/js/main.js"></script>
53+
</body>
54+
</html>

_config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# GitHub Pages configuration for clean URLs
2+
permalink: pretty
3+
4+
# Disable Jekyll processing (we're using static HTML)
5+
plugins: []

assets/.gitkeep

Whitespace-only changes.

assets/icons/AppWindow.svg

Lines changed: 3 additions & 0 deletions
Loading

assets/icons/ArrowCircleDown.svg

Lines changed: 3 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)