d25d482dc2
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled
38 lines
1.3 KiB
TypeScript
38 lines
1.3 KiB
TypeScript
import { cn } from '@sim/emcn'
|
|
import {
|
|
Cta,
|
|
Features,
|
|
Hero,
|
|
HomeStructuredData,
|
|
Mothership,
|
|
ProductDemo,
|
|
} from '@/app/(landing)/components'
|
|
import { LANDING_SECTION_RHYTHM } from '@/app/(landing)/components/landing-layout'
|
|
|
|
/**
|
|
* Landing page root - owns the section order and the `<main>` content region.
|
|
*
|
|
* The shared chrome (`light` + brand token layer, scroll port, skip link, navbar
|
|
* with build/revalidate-time GitHub stars, footer, and site-wide JSON-LD) is
|
|
* owned by the route-group layout via `LandingShell`, so the landing family can
|
|
* never drift and the navbar persists across navigation. This page emits only
|
|
* its `<main>` and the home-specific structured data.
|
|
*
|
|
* `<main>` is a `flex flex-col` whose `gap` is the single source of truth for
|
|
* inter-section rhythm - sections carry no vertical margin/padding of their own,
|
|
* so one knob keeps every section break uniform across the page. Each section
|
|
* component owns its own landmark (`<section id aria-labelledby>`).
|
|
*/
|
|
export default function Landing() {
|
|
return (
|
|
<main id='main-content' className={cn('flex flex-col', LANDING_SECTION_RHYTHM)}>
|
|
<HomeStructuredData />
|
|
<Hero />
|
|
<ProductDemo />
|
|
<Mothership />
|
|
<Features />
|
|
<Cta />
|
|
</main>
|
|
)
|
|
}
|