Migrate Tír na nÓg landing page to Next.js

Summary of changes:
- Created the 'feature/migration-nextjs' branch.
- Initialized a Next.js project with React components and App Router structure.
- Created reusable UI components: Viewport, World, Room, and Door in 'app/components/'.
- Implemented spatial navigation logic (WASD/Arrows and clicks) using React 'useState' and 'useEffect' in 'app/page.js'.
- Migrated the Tír na nÓg pixel-art aesthetic and layout transitions into 'app/globals.css'.
- Configured a Gitea Runner CI/CD workflow in '.gitea/workflows/deploy.yml' for automated builds and linting.
- Added a '.gitignore' file to manage project artifacts.

Co-authored-by: micmug <185775013+micmug@users.noreply.github.com>
This commit is contained in:
google-labs-jules[bot]
2026-04-11 23:17:56 +00:00
parent 822cd22dee
commit f6d50d8def
11 changed files with 172 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
name: Next.js Deploy
on:
push:
branches: [main, feature/migration-nextjs]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "20"
- run: npm install
- run: npm run build
- run: npm run lint