Skip to content

Commit a602105

Browse files
authored
Revert "docs: expand architecture and release documentation (#173)" (#174)
This reverts commit 075ba27.
1 parent 075ba27 commit a602105

19 files changed

Lines changed: 207 additions & 534 deletions

README.md

Lines changed: 112 additions & 174 deletions
Large diffs are not rendered by default.

apps/marketing/app/globals.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,10 @@
7878
}
7979

8080
@theme inline {
81-
--font-sans:
82-
var(--font-dm-sans), "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui,
83-
sans-serif;
84-
--font-mono: "SF Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
81+
--font-sans: var(--font-dm-sans), "DM Sans", -apple-system, BlinkMacSystemFont,
82+
"Segoe UI", system-ui, sans-serif;
83+
--font-mono: "SF Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo,
84+
monospace;
8585
--color-background: var(--background);
8686
--color-foreground: var(--foreground);
8787
--color-card: var(--card);

apps/marketing/components/ai-section.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ export function AISection() {
310310

311311
{/* MCP Code Snippet - Use semantic tokens for code syntax */}
312312
<div className="bg-card/30 border border-border/60 rounded-xl p-5 font-mono text-sm">
313-
<p className="text-muted-foreground/70 mb-3">{"//mcp.sprint.app/sse"}</p>
313+
<p className="text-muted-foreground/70 mb-3">//mcp.sprint.app/sse</p>
314314
<div className="space-y-1 mb-6">
315315
<p>
316316
<span className="text-code-constant/70">"mcpServers"</span>

apps/marketing/components/dashboard/dashboard-inbox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ function IssueRow({
184184
issue,
185185
selected,
186186
onClick,
187-
isMobile: _isMobile,
187+
isMobile,
188188
}: {
189189
issue: Issue;
190190
selected: boolean;

apps/marketing/components/dashboard/dashboard-issue-detail.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -484,9 +484,9 @@ export function DashboardIssueDetail({
484484
</div>
485485

486486
<div className="space-y-4">
487-
{issue.activity.map((activity) => (
487+
{issue.activity.map((activity, index) => (
488488
<ActivityItem
489-
key={`${activity.time}-${activity.user}-${activity.action}`}
489+
key={index}
490490
user={activity.user}
491491
action={activity.action}
492492
time={activity.time}

apps/marketing/components/dashboard/dashboard-sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ function NavItem({
298298
color,
299299
teamColor,
300300
onClick,
301-
isMobile: _isMobile,
301+
isMobile,
302302
}: {
303303
icon: React.ElementType;
304304
label: string;

apps/marketing/components/logo-cloud.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@ export function LogoCloud() {
4747
>
4848
{/* Logo grid with variety */}
4949
<div className="grid grid-cols-2 md:grid-cols-4 gap-x-16 gap-y-10 items-center justify-items-center transition-all duration-300 group-hover:blur-[2.5px] group-hover:opacity-50">
50-
{companies.map((company, companyIndex) => {
50+
{companies.map((company, i) => {
5151
const Icon = company.icon;
5252
return (
5353
<motion.div
54-
key={company.name}
54+
key={i}
5555
initial={{ opacity: 0, scale: 0.8 }}
5656
whileInView={{ opacity: 1, scale: 1 }}
5757
viewport={{ once: true }}
58-
transition={{ duration: 0.4, delay: companyIndex * 0.05 }}
58+
transition={{ duration: 0.4, delay: i * 0.05 }}
5959
className="text-foreground font-semibold text-xl flex items-center gap-2"
6060
>
6161
<Icon className="w-5 h-5 fill-current" />

apps/marketing/components/product-direction-section.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,13 @@ export function ProductDirectionSection() {
7777
<div className="absolute top-0 left-0 right-0 flex items-end">
7878
{/* Tick marks row */}
7979
<div className="flex items-end gap-[3px] absolute bottom-0 left-[5%] right-0">
80-
{Array.from({ length: 60 }, (_, tickIndex) => tickIndex).map((tickIndex) => (
80+
{Array.from({ length: 60 }).map((_, i) => (
8181
<div
82-
key={tickIndex}
82+
key={i}
8383
className="bg-zinc-600/60"
8484
style={{
8585
width: "1px",
86-
height: tickIndex % 7 === 0 ? "16px" : "8px",
86+
height: i % 7 === 0 ? "16px" : "8px",
8787
}}
8888
/>
8989
))}

apps/marketing/components/ui-panel-inbox.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ export function UIPanelInbox() {
8787

8888
{/* List */}
8989
<div className="divide-y divide-zinc-800/30">
90-
{items.map((item) => (
90+
{items.map((item, index) => (
9191
<div
92-
key={`${item.id}-${item.title}-${item.time || "0"}`}
92+
key={index}
9393
className="px-4 py-2.5 hover:bg-zinc-800/30 transition-colors cursor-pointer"
9494
>
9595
<div className="flex items-start gap-3">

apps/marketing/components/ui/carousel.tsx

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -102,22 +102,19 @@ function Carousel({
102102
};
103103
}, [api, onSelect]);
104104

105-
const contextValue = React.useMemo(
106-
() => ({
107-
carouselRef,
108-
api: api,
109-
opts,
110-
orientation: orientation || (opts?.axis === "y" ? "vertical" : "horizontal"),
111-
scrollPrev,
112-
scrollNext,
113-
canScrollPrev,
114-
canScrollNext,
115-
}),
116-
[api, canScrollNext, canScrollPrev, carouselRef, orientation, opts, scrollNext, scrollPrev],
117-
);
118-
119105
return (
120-
<CarouselContext.Provider value={contextValue}>
106+
<CarouselContext.Provider
107+
value={{
108+
carouselRef,
109+
api: api,
110+
opts,
111+
orientation: orientation || (opts?.axis === "y" ? "vertical" : "horizontal"),
112+
scrollPrev,
113+
scrollNext,
114+
canScrollPrev,
115+
canScrollNext,
116+
}}
117+
>
121118
<div
122119
onKeyDownCapture={handleKeyDown}
123120
className={cn("relative", className)}

0 commit comments

Comments
 (0)