Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added app-preview-awaiting.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app-preview-completed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app-preview-current.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app-preview-full.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app-preview-pending.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app-preview-plan-ready.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
483 changes: 0 additions & 483 deletions apps/landing/src/components/AppPreview/AppPreview.tsx

This file was deleted.

353 changes: 0 additions & 353 deletions apps/landing/src/components/AppPreview/data.ts

This file was deleted.

8 changes: 1 addition & 7 deletions apps/landing/src/components/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ import Image from "next/image";
import type { DetectedOS } from "~/lib/detectOS";
import type { Release } from "~/lib/github";
import { DownloadButton } from "./DownloadButton";
import { AppPreview } from "./AppPreview/AppPreview";

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

<DownloadButton serverOS={os} serverRelease={release} />
</div>

{/* Interactive app preview */}
<div className="relative z-10 mx-auto mt-16 w-full max-w-5xl px-2 sm:px-0">
<AppPreview />
</div>
</section>
);
}
3 changes: 2 additions & 1 deletion apps/server/src/processRunner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export interface ProcessRunOptions {
allowNonZeroExit?: boolean | undefined;
maxBufferBytes?: number | undefined;
outputMode?: "error" | "truncate" | undefined;
shell?: boolean | undefined;
}

export interface ProcessRunResult {
Expand Down Expand Up @@ -152,7 +153,7 @@ export async function runProcess(
cwd: options.cwd,
env: options.env,
stdio: "pipe",
shell: process.platform === "win32",
shell: options.shell ?? process.platform === "win32",
});

let stdout = "";
Expand Down
Loading
Loading