feat: scaffold Astro project with layout, nav, hero and concept sections

- Add global ocean-themed styles (Inter + Sora, glassmorphism utilities).
- Wire up base layout, sticky nav and footer respecting base path.
- Build hero with stylised rock SVG + sonar ambient rings and concept pipeline schematic.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-21 07:27:31 +00:00
parent ea461629f3
commit aeec79d7b4
14 changed files with 7369 additions and 0 deletions

9
tsconfig.json Normal file
View File

@@ -0,0 +1,9 @@
{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"~/*": ["src/*"]
}
}
}