feat: Add navigation links and .gitignore

This commit is contained in:
Pixel
2026-03-15 09:52:15 +01:00
parent d3ff1950b8
commit 564c824637
2 changed files with 42 additions and 1 deletions
+36
View File
@@ -0,0 +1,36 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/.pnp
.pnp.js
# testing
/coverage
# next.js
/.next/
/out/
# production
/build
# misc
.DS_Store
*.pem
# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
# local env files
.env*.local
# vercel
.vercel
# typescript
*.tsbuildinfo
next-env.d.ts
+6 -1
View File
@@ -42,8 +42,13 @@ export default function Home() {
<OrbitControls enableZoom={false} enablePan={false} autoRotate autoRotateSpeed={0.5} /> <OrbitControls enableZoom={false} enablePan={false} autoRotate autoRotateSpeed={0.5} />
</Suspense> </Suspense>
</Canvas> </Canvas>
<div className="absolute inset-0 z-10"> <div className="absolute inset-0 z-10 flex flex-col items-center justify-center">
<Gate /> <Gate />
<div className="absolute bottom-10 flex space-x-8 text-gray-400 font-mono">
<a href="https://faebits.com" target="_blank" rel="noopener noreferrer" className="hover:text-purple-400 transition-colors">2D-Ebene</a>
<a href="https://3d.faebits.com" target="_blank" rel="noopener noreferrer" className="hover:text-purple-400 transition-colors">3D-Anderswelt</a>
<a href="https://git.faebits.com" target="_blank" rel="noopener noreferrer" className="hover:text-purple-400 transition-colors">Das Archiv</a>
</div>
</div> </div>
</main> </main>
); );