Merge branch 'dev'
This commit is contained in:
commit
bac9e2c56a
|
|
@ -20,9 +20,9 @@ EOF
|
|||
# Start the stack
|
||||
docker compose up -d
|
||||
|
||||
# Wait for healthy status (may take 1-2 minutes on first boot)
|
||||
# Wait for healthy status (may take 2-3 minutes on first boot for migrations)
|
||||
docker compose ps
|
||||
docker logs twenty-server --tail 50
|
||||
docker logs twenty-ch-server --tail 50
|
||||
```
|
||||
|
||||
## 2. Create Admin Account
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ export function renderMainLanding(modules: ModuleInfo[]): string {
|
|||
<!-- Hero -->
|
||||
<div class="rl-hero">
|
||||
<span class="rl-tagline">Community Platform</span>
|
||||
<h1 class="rl-heading main-wordmark">(ou)r<span class="main-wordmark__accent">Space</span></h1>
|
||||
<h1 class="rl-heading main-wordmark">(you)r<span class="main-wordmark__accent">Space</span></h1>
|
||||
<p class="rl-subtitle">Remember back when the internet was cool?</p>
|
||||
<p class="rl-subtext">
|
||||
A collaborative, local-first platform with ${modules.length}+ interoperable tools.
|
||||
|
|
@ -396,6 +396,18 @@ const SPACE_DASHBOARD_CSS = `
|
|||
|
||||
const MAIN_LANDING_CSS = `
|
||||
/* Main landing page extras (on top of rl-* utilities) */
|
||||
body {
|
||||
background: linear-gradient(
|
||||
170deg,
|
||||
#0a0f1e 0%,
|
||||
#0f172a 25%,
|
||||
#131b2e 45%,
|
||||
#0e1628 65%,
|
||||
#0d1424 85%,
|
||||
#080d19 100%
|
||||
);
|
||||
background-attachment: fixed;
|
||||
}
|
||||
.main-wordmark {
|
||||
font-size: 3.5rem;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue