Skip to content

Commit b5922c0

Browse files
committed
landing web demo
1 parent 82fdbf7 commit b5922c0

File tree

2 files changed

+262
-71
lines changed

2 files changed

+262
-71
lines changed

landing/src/App.tsx

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,34 @@
11
import { Hero, Features, TerminalDemo, Demo, Footer } from './components';
2+
import { motion } from 'framer-motion';
3+
4+
function EasySection() {
5+
return (
6+
<section className="py-20 px-6">
7+
<motion.div
8+
initial={{ opacity: 0, y: 20 }}
9+
whileInView={{ opacity: 1, y: 0 }}
10+
viewport={{ once: true }}
11+
transition={{ duration: 0.5 }}
12+
className="max-w-4xl mx-auto text-center"
13+
>
14+
<h2 className="text-3xl md:text-5xl font-semibold text-white mb-4">
15+
Yes, it's that easy.
16+
</h2>
17+
<p className="text-zinc-500 text-lg">
18+
One command to start. Your team reviews in the browser. Claude adapts to feedback.
19+
</p>
20+
</motion.div>
21+
</section>
22+
);
23+
}
224

325
function App() {
426
return (
527
<div className="min-h-screen bg-black text-white antialiased">
628
<Hero />
729
<Features />
830
<TerminalDemo />
31+
<EasySection />
932
<Demo />
1033
<Footer />
1134
</div>

0 commit comments

Comments
 (0)