Skip to content

Commit 9628d31

Browse files
Migrate from Odyssey theme to AstroWind theme
- Complete theme migration from Odyssey to AstroWind (Astro 5.18.1) - Custom pages: Home, Services, Training, Conferences, Community, About, Contact, Legal, Thanks, 404 - Azure Blue color palette with custom SVG hybrid cloud logo - Real content from Sessionize/run.events profiles (30+ sessions, 15+ events) - Contact form via submit-form.com with honeypot spam protection - LinkedIn added to social links alongside X, YouTube, GitHub - Run.events profile photo on About page - Removed blog functionality (disabled in config) - Cleaned up all AstroWind demo pages (pricing, homes, landing, blog)
1 parent 7e368f9 commit 9628d31

260 files changed

Lines changed: 20337 additions & 12087 deletions

File tree

Some content is hidden

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

.dockerignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
dist/
2+
node_modules/
3+
.vscode/
4+
.github/

.editorconfig

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# https://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
[*]
7+
charset = utf-8
8+
end_of_line = lf
9+
indent_size = 2
10+
indent_style = space
11+
insert_final_newline = true
12+
trim_trailing_whitespace = false

.frontmatter/database/mediaDb.json

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

.frontmatter/database/pinnedItemsDb.json

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

.frontmatter/database/taxonomyDb.json

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

.github/workflows/actions.yaml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: GitHub Actions
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
push:
8+
branches:
9+
- main
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
strategy:
15+
matrix:
16+
node-version:
17+
- 18
18+
- 20
19+
- 22
20+
steps:
21+
- uses: actions/checkout@v4
22+
- name: Use Node.js v${{ matrix.node-version }}
23+
uses: actions/setup-node@v4
24+
with:
25+
node-version: ${{ matrix.node-version }}
26+
cache: npm
27+
- run: npm ci
28+
- run: npm run build
29+
# - run: npm test
30+
31+
check:
32+
runs-on: ubuntu-latest
33+
steps:
34+
- uses: actions/checkout@v4
35+
- name: Use Node.js 22
36+
uses: actions/setup-node@v4
37+
with:
38+
node-version: 22
39+
cache: npm
40+
- run: npm ci
41+
- run: npm run check

.github/workflows/deploy.yml

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

.gitignore

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# build output
22
dist/
3-
# generated types
4-
.astro/
3+
.output/
54

65
# dependencies
76
node_modules/
@@ -20,5 +19,6 @@ pnpm-debug.log*
2019
# macOS-specific files
2120
.DS_Store
2221

23-
# jetbrains setting folder
24-
.idea/
22+
pnpm-lock.yaml
23+
24+
.astro

.idx/dev.nix

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

.nojekyll

Whitespace-only changes.

0 commit comments

Comments
 (0)