diff --git a/apps/desktop/turbo.jsonc b/apps/desktop/turbo.jsonc index 2fb5e5e67..37bdd33f0 100644 --- a/apps/desktop/turbo.jsonc +++ b/apps/desktop/turbo.jsonc @@ -1,5 +1,5 @@ { - "$schema": "https://turbo.build/schema.json", + "$schema": "https://v2-9-3.turborepo.dev/schema.json", "extends": ["//"], "tasks": { "build": { diff --git a/apps/marketing/src/components/Background.astro b/apps/marketing/src/components/Background.astro index 21c1bbbed..a5166febb 100644 --- a/apps/marketing/src/components/Background.astro +++ b/apps/marketing/src/components/Background.astro @@ -40,7 +40,7 @@ const stars = Array.from({ length: starCount }, (_, i) => { - + @@ -53,6 +53,23 @@ const stars = Array.from({ length: starCount }, (_, i) => { + + + + + + + + + + + + + + + + + @@ -65,6 +82,7 @@ const stars = Array.from({ length: starCount }, (_, i) => { r={star.r} fill="var(--kn-landing-star-color)" opacity={star.opacity} + data-star-index={star.id} class:list={{ "kn-star-twinkle": star.twinkle }} style={star.twinkle ? `animation-delay:${star.delay}s` : undefined} /> diff --git a/apps/marketing/src/components/CoreSurfaces.astro b/apps/marketing/src/components/CoreSurfaces.astro index 94c9ce3e3..0a407ab98 100644 --- a/apps/marketing/src/components/CoreSurfaces.astro +++ b/apps/marketing/src/components/CoreSurfaces.astro @@ -14,6 +14,61 @@ interface Props { const { surfaces } = Astro.props; const defaultId = surfaces[0]?.id ?? ""; + +/** CSS-only mockup visuals per surface */ +const surfaceVisuals: Record = { + threads: `
+
+
+
+
+
+
`, + diffs: `
+
+
+
+
+
+
+
+
`, + preview: `
+
+
+
+
+
+
+
+
+
+
`, + review: `
+
+
+
Approved
+
+
+
+
+
+
+
+
`, + actions: `
+
+
+
+
+
+
+
+
+
+
+
` +}; ---
@@ -53,14 +108,19 @@ const defaultId = surfaces[0]?.id ?? ""; aria-hidden={item.id === defaultId ? "false" : "true"} data-active={item.id === defaultId ? "true" : "false"} > -

{item.kicker}

-

{item.title}

-

{item.body}

-
    - {item.bullets.map((bullet) => ( -
  • {bullet}
  • - ))} -
+
+
+

{item.kicker}

+

{item.title}

+

{item.body}

+
    + {item.bullets.map((bullet) => ( +
  • {bullet}
  • + ))} +
+
+ ))}
diff --git a/apps/marketing/src/components/FaqSection.astro b/apps/marketing/src/components/FaqSection.astro index 7aad77b0e..e0b4a9d43 100644 --- a/apps/marketing/src/components/FaqSection.astro +++ b/apps/marketing/src/components/FaqSection.astro @@ -45,6 +45,14 @@ const { faqs } = Astro.props; ); })} + +
+

Still have questions?

+

Join the community on Discord and talk to other builders using OK Code.

+ + Join Discord + +
diff --git a/apps/marketing/src/layouts/Layout.astro b/apps/marketing/src/layouts/Layout.astro index 562ed7d47..91d9a496f 100644 --- a/apps/marketing/src/layouts/Layout.astro +++ b/apps/marketing/src/layouts/Layout.astro @@ -40,8 +40,19 @@ const ogImage = Astro.site ? new URL(ogImagePath, Astro.site).href : null; {title} + diff --git a/apps/marketing/turbo.jsonc b/apps/marketing/turbo.jsonc index 25ada22e7..c1cbc9bcd 100644 --- a/apps/marketing/turbo.jsonc +++ b/apps/marketing/turbo.jsonc @@ -1,5 +1,5 @@ { - "$schema": "https://turbo.build/schema.json", + "$schema": "https://v2-9-3.turborepo.dev/schema.json", "extends": ["//"], "tasks": { "preview": { diff --git a/apps/mobile/turbo.jsonc b/apps/mobile/turbo.jsonc index d844c83f6..e02cb927a 100644 --- a/apps/mobile/turbo.jsonc +++ b/apps/mobile/turbo.jsonc @@ -1,4 +1,4 @@ { - "$schema": "https://turbo.build/schema.json", + "$schema": "https://v2-9-3.turborepo.dev/schema.json", "extends": ["//"], } diff --git a/apps/server/turbo.jsonc b/apps/server/turbo.jsonc index 34f8874f8..1f62a0480 100644 --- a/apps/server/turbo.jsonc +++ b/apps/server/turbo.jsonc @@ -1,5 +1,5 @@ { - "$schema": "https://turbo.build/schema.json", + "$schema": "https://v2-9-3.turborepo.dev/schema.json", "extends": ["//"], "tasks": { "start": { diff --git a/apps/web/src/components/Sidebar.tsx b/apps/web/src/components/Sidebar.tsx index 01cf37696..b26546c61 100644 --- a/apps/web/src/components/Sidebar.tsx +++ b/apps/web/src/components/Sidebar.tsx @@ -1459,7 +1459,6 @@ export default function Sidebar() { )} - {project.expanded && !appSettings.sidebarHideFiles ? ( diff --git a/apps/web/src/routes/_chat.settings.tsx b/apps/web/src/routes/_chat.settings.tsx index 87635393b..7e4c7bec4 100644 --- a/apps/web/src/routes/_chat.settings.tsx +++ b/apps/web/src/routes/_chat.settings.tsx @@ -928,8 +928,7 @@ function SettingsRouteView() {