Build-time tenant config via VITE_TENANT env var (--mode loop42/dev).
Content pages moved to tenants/{name}/pages/ with dynamic imports and
loop42 fallback. Feature-gated routing (viewer/devTools per tenant).
Dockerfile parameterized with TENANT build arg. Deployed to separate
K8s namespaces: loop42.de → ns/loop42, loop42.dev → ns/dev.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
56 lines
1.0 KiB
Vue
56 lines
1.0 KiB
Vue
<template>
|
|
<div class="dev-home">
|
|
<div class="hero">
|
|
<h1>loop42 <em>Dev</em></h1>
|
|
<p>Development environment with full debug tools.</p>
|
|
<router-link to="/nyx" class="btn">Open nyx</router-link>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.dev-home { color: var(--text); }
|
|
|
|
.hero {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
padding: 6rem 2rem 4rem;
|
|
min-height: 60vh;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: clamp(2rem, 5vw, 3.5rem);
|
|
font-weight: 300;
|
|
letter-spacing: 0.05em;
|
|
margin: 0 0 1.5rem;
|
|
}
|
|
|
|
.hero h1 em {
|
|
font-style: normal;
|
|
color: var(--accent);
|
|
}
|
|
|
|
.hero p {
|
|
font-size: 1.1rem;
|
|
color: var(--text-dim);
|
|
max-width: 480px;
|
|
margin: 0 auto 2.5rem;
|
|
}
|
|
|
|
.btn {
|
|
display: inline-block;
|
|
padding: 0.75rem 2rem;
|
|
background: var(--accent);
|
|
color: #fff;
|
|
border-radius: 6px;
|
|
font-size: 0.9rem;
|
|
letter-spacing: 0.05em;
|
|
transition: opacity 0.2s;
|
|
text-decoration: none;
|
|
}
|
|
.btn:hover { opacity: 0.85; }
|
|
</style>
|