Toggle theme · T

AI IDE

A near-full-screen agentic web-dev workspace — file explorer, a tabbed main pane for code, preview, devtools, and terminal, plus a live agent streaming alongside.

Scontactsevakbun dev · localhost:3000
sevak / contactsevak
main· d2f14c
Live · compiled 1.2s
2 warnings0 errors
TSX
componentssectionshero.tsxfunction Hero
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { motion } from "framer-motion"
import { cn } from "@/lib/utils"
 
export function Hero() {
return (
<section className="relative mx-auto max-w-5xl py-24">
<motion.h1
initial={{ opacity: 0, y: 12 }}
animate={{ opacity: 1, y: 0 }}
className={cn("text-5xl font-bold tracking-tight")}
>
Ship software with a co-pilot
</motion.h1>
 
<p className="mt-6 max-w-xl text-balance">
An agentic IDE that writes, previews, and ships — together.
</p>
</section>
)
}
main↑20 errors2 warnings
Ln 14, Col 32UTF-8LFTypeScriptcode