aethex-forge/client/pages/Index.tsx
sirpiglr d89675f145 Align landing page with site's overall design and navigation
Refactor client/pages/Index.tsx to wrap IsometricRealmSelector in the Layout component and remove custom header/footer from client/components/IsometricRealmSelector.tsx to ensure consistent styling and navigation.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 9203795e-937a-4306-b81d-b4d5c78c240e
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Event-Id: d873c72a-adfa-4a4c-997b-1ade64361a9c
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/7c94b7a0-29c7-4f2e-94ef-44b2153872b7/9203795e-937a-4306-b81d-b4d5c78c240e/muiWWXW
Replit-Helium-Checkpoint-Created: true
2025-12-06 02:22:12 +00:00

20 lines
583 B
TypeScript

import SEO from "@/components/SEO";
import Layout from "@/components/Layout";
import IsometricRealmSelector from "@/components/IsometricRealmSelector";
export default function Index() {
return (
<Layout>
<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 />
</Layout>
);
}