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
11 changes: 11 additions & 0 deletions website/app/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions website/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ const jetbrainsMono = JetBrains_Mono({
});

export const metadata: Metadata = {
metadataBase: new URL(
process.env.NEXT_PUBLIC_SITE_URL ?? "https://rxcode.app"
),
title: "RxCode — The Visual Command Center for AI Coding Agents",
description:
"A native macOS desktop client that supercharges your AI coding workflow. Manage sessions, visualize project architecture, and review AI-generated code without leaving your desktop.",
Expand All @@ -29,6 +32,15 @@ export const metadata: Metadata = {
description:
"A native macOS desktop client for AI coding agents. Visual sessions, project tree, and code review in one place.",
type: "website",
url: "/",
siteName: "RxCode",
locale: "en_US",
},
twitter: {
card: "summary_large_image",
title: "RxCode — The Visual Command Center for AI Coding Agents",
description:
"A native macOS desktop client for AI coding agents. Visual sessions, project tree, and code review in one place.",
},
};

Expand Down
133 changes: 133 additions & 0 deletions website/app/opengraph-image.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,133 @@
import { ImageResponse } from "next/og";

export const runtime = "edge";

export const alt = "RxCode — The Visual Command Center for AI Coding Agents";
export const size = { width: 1200, height: 630 };
export const contentType = "image/png";

export default async function Image() {
return new ImageResponse(
(
<div
style={{
background: "#0E0E0F",
width: "100%",
height: "100%",
display: "flex",
flexDirection: "column",
alignItems: "center",
justifyContent: "center",
fontFamily: "system-ui, sans-serif",
padding: "80px",
position: "relative",
}}
>
{/* Subtle grid overlay */}
<div
style={{
position: "absolute",
inset: 0,
backgroundImage:
"linear-gradient(rgba(217,119,87,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(217,119,87,0.06) 1px, transparent 1px)",
backgroundSize: "40px 40px",
display: "flex",
}}
/>

{/* Glow */}
<div
style={{
position: "absolute",
top: "50%",
left: "50%",
transform: "translate(-50%, -60%)",
width: "600px",
height: "400px",
background: "radial-gradient(ellipse, rgba(217,119,87,0.18) 0%, transparent 70%)",
display: "flex",
}}
/>

{/* Logo + Name */}
<div
style={{
display: "flex",
alignItems: "center",
gap: "20px",
marginBottom: "40px",
}}
>
<div
style={{
width: "76px",
height: "76px",
background: "#D97757",
display: "flex",
alignItems: "center",
justifyContent: "center",
borderRadius: "14px",
}}
>
<span
style={{
color: "#FFFFFF",
fontSize: "34px",
fontWeight: 700,
letterSpacing: "-0.5px",
}}
>
Rx
</span>
</div>
<span
style={{
color: "#F5F0EB",
fontSize: "60px",
fontWeight: 700,
letterSpacing: "-1px",
}}
>
RxCode
</span>
</div>

{/* Headline */}
<div
style={{
color: "#F5F0EB",
fontSize: "38px",
fontWeight: 600,
textAlign: "center",
lineHeight: 1.25,
maxWidth: "820px",
}}
>
The Visual Command Center for{" "}
<span style={{ color: "#D97757" }}>AI Coding Agents</span>
</div>

{/* Sub-label */}
<div
style={{
color: "#7A6E68",
fontSize: "22px",
marginTop: "28px",
letterSpacing: "0.12em",
textTransform: "uppercase",
display: "flex",
gap: "16px",
alignItems: "center",
}}
>
<span>Native macOS</span>
<span style={{ color: "#D97757", fontSize: "10px" }}>●</span>
<span>Claude Code &amp; Codex</span>
<span style={{ color: "#D97757", fontSize: "10px" }}>●</span>
<span>Free &amp; Open Source</span>
</div>
</div>
),
{ ...size }
);
}