aethex-forge/client/pages/Index.tsx
sirpiglr 1bf0398b92 Introduce an interactive realm selector with animated cards
Replace the existing Scene component with a new IsometricRealmSelector component, which includes animated and interactive IsometricRealmCard components. This change enhances the visual appeal and user interaction of the realm selection process.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 9203795e-937a-4306-b81d-b4d5c78c240e
Replit-Commit-Checkpoint-Type: intermediate_checkpoint
Replit-Commit-Event-Id: 0b0d2f50-5f1a-411e-bb1d-b426ced94cd0
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/7c94b7a0-29c7-4f2e-94ef-44b2153872b7/9203795e-937a-4306-b81d-b4d5c78c240e/lX9tyiI
Replit-Helium-Checkpoint-Created: true
2025-12-05 22:49:13 +00:00

19 lines
529 B
TypeScript

import SEO from "@/components/SEO";
import IsometricRealmSelector from "@/components/IsometricRealmSelector";
export default function Index() {
return (
<>
<SEO
pageTitle="AeThex | Immersive OS"
description="AeThex OS — Cyberpunk Animus command center for Nexus, GameForge, Foundation, Labs, and Corp."
canonical={
typeof window !== "undefined"
? window.location.href
: (undefined as any)
}
/>
<IsometricRealmSelector />
</>
);
}