Skip to content

Commit a337c18

Browse files
shantanu patilshantanu patil
authored andcommitted
Revert "feat: Wave 2 — 3D CodeConstellation hero, flowing particles, bloom effects & MCP messaging"
This reverts commit 05b0783.
1 parent 05b0783 commit a337c18

8 files changed

Lines changed: 46 additions & 507 deletions

File tree

package-lock.json

Lines changed: 0 additions & 46 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
"@gsap/react": "^2.1.2",
1313
"@react-three/drei": "^10.7.7",
1414
"@react-three/fiber": "^9.5.0",
15-
"@react-three/postprocessing": "^3.0.4",
1615
"class-variance-authority": "^0.7.1",
1716
"clsx": "^2.1.1",
1817
"file-saver": "^2.0.5",

src/components/landing/CodeConstellation.tsx

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

src/components/landing/ComparisonTable.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ const rows: ComparisonRow[] = [
1919
{ feature: 'Interactive AI chat about code', us: true, them: true },
2020
{ feature: 'Private repository support', us: true, them: true },
2121
{ feature: 'No data leaves your infra', us: true, them: false },
22-
{ feature: 'MCP server for AI agents', us: true, them: false },
2322
];
2423

2524
const CheckIcon = () => (

src/components/landing/FeatureCards.tsx

Lines changed: 3 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -95,27 +95,6 @@ const features: Feature[] = [
9595
</svg>
9696
),
9797
},
98-
{
99-
title: 'MCP Server Integration',
100-
description:
101-
'Query your wiki directly from Claude Code, Cursor, Windsurf, or any MCP-compatible AI agent. Your documentation lives where you code.',
102-
icon: (
103-
<svg
104-
xmlns="http://www.w3.org/2000/svg"
105-
className="h-6 w-6"
106-
fill="none"
107-
viewBox="0 0 24 24"
108-
stroke="currentColor"
109-
strokeWidth={1.5}
110-
>
111-
<path
112-
strokeLinecap="round"
113-
strokeLinejoin="round"
114-
d="M13.19 8.688a4.5 4.5 0 011.242 7.244l-4.5 4.5a4.5 4.5 0 01-6.364-6.364l1.757-1.757m13.35-.622l1.757-1.757a4.5 4.5 0 00-6.364-6.364l-4.5 4.5a4.5 4.5 0 001.242 7.244"
115-
/>
116-
</svg>
117-
),
118-
},
11998
];
12099

121100
export default function FeatureCards() {
@@ -205,16 +184,12 @@ export default function FeatureCards() {
205184
</p>
206185
</div>
207186

208-
{/* Feature Grid */}
187+
{/* 2x2 Grid */}
209188
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
210-
{features.map((feature, index) => (
189+
{features.map((feature) => (
211190
<div
212191
key={feature.title}
213-
className={`fc-card border border-border bg-card/50 backdrop-blur-sm rounded-xl p-6 transition-colors hover:border-primary/50 hover:-translate-y-1 transition-transform duration-200${
214-
features.length % 2 !== 0 && index === features.length - 1
215-
? ' md:col-span-2 md:max-w-xl md:mx-auto md:w-full'
216-
: ''
217-
}`}
192+
className="fc-card border border-border bg-card/50 backdrop-blur-sm rounded-xl p-6 transition-colors hover:border-primary/50 hover:-translate-y-1 transition-transform duration-200"
218193
>
219194
{/* Icon */}
220195
<div className="fc-card-icon w-10 h-10 rounded-lg bg-primary/10 flex items-center justify-center text-primary mb-4">

0 commit comments

Comments
 (0)