Skip to content

Commit 43866b2

Browse files
authored
Merge pull request #77 from tyulyukov/feature/feat/provider-advisories-landing
feat(landing): add provider update advisories and landing page redesign
2 parents 8ccacc5 + 49c7dc0 commit 43866b2

33 files changed

Lines changed: 614 additions & 974 deletions

app-preview-awaiting.png

157 KB
Loading

app-preview-completed.png

145 KB
Loading

app-preview-current.png

174 KB
Loading

app-preview-full.png

477 KB
Loading

app-preview-pending.png

163 KB
Loading

app-preview-plan-ready.png

154 KB
Loading

apps/landing/src/components/AppPreview/AppPreview.tsx

Lines changed: 0 additions & 483 deletions
This file was deleted.

apps/landing/src/components/AppPreview/data.ts

Lines changed: 0 additions & 353 deletions
This file was deleted.

apps/landing/src/components/Hero.tsx

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@ import Image from "next/image";
22
import type { DetectedOS } from "~/lib/detectOS";
33
import type { Release } from "~/lib/github";
44
import { DownloadButton } from "./DownloadButton";
5-
import { AppPreview } from "./AppPreview/AppPreview";
65

76
export function Hero({ os, release }: { os: DetectedOS; release: Release | null }) {
87
return (
9-
<section className="relative flex flex-col items-center justify-center overflow-hidden px-6 pt-24 pb-12">
8+
<section className="relative flex min-h-screen flex-col items-center justify-center overflow-hidden px-6 py-24">
109
{/* Decorative circles (BRAND.md: circle = core element) */}
1110
<div className="pointer-events-none absolute -left-32 -top-32 size-96 rounded-full bg-fresh-syntax/5 blur-3xl" />
1211
<div className="pointer-events-none absolute -bottom-48 -right-24 size-[500px] rounded-full bg-curious-sky/5 blur-3xl" />
@@ -40,11 +39,6 @@ export function Hero({ os, release }: { os: DetectedOS; release: Release | null
4039

4140
<DownloadButton serverOS={os} serverRelease={release} />
4241
</div>
43-
44-
{/* Interactive app preview */}
45-
<div className="relative z-10 mx-auto mt-16 w-full max-w-5xl px-2 sm:px-0">
46-
<AppPreview />
47-
</div>
4842
</section>
4943
);
5044
}

apps/server/src/processRunner.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ export interface ProcessRunOptions {
88
allowNonZeroExit?: boolean | undefined;
99
maxBufferBytes?: number | undefined;
1010
outputMode?: "error" | "truncate" | undefined;
11+
shell?: boolean | undefined;
1112
}
1213

1314
export interface ProcessRunResult {
@@ -152,7 +153,7 @@ export async function runProcess(
152153
cwd: options.cwd,
153154
env: options.env,
154155
stdio: "pipe",
155-
shell: process.platform === "win32",
156+
shell: options.shell ?? process.platform === "win32",
156157
});
157158

158159
let stdout = "";

0 commit comments

Comments
 (0)