1+ import { Card , CardContent , CardDescription , CardHeader , CardTitle } from "@/components/ui/card" ;
2+ import { Code , Clock } from "lucide-react" ;
3+
4+ const DocsExamples = ( ) => {
5+ return (
6+ < div className = "flex gap-8" >
7+ { /* Sumário - Coluna Esquerda */ }
8+ < div className = "w-64 flex-shrink-0" >
9+ < div className = "sticky top-6 p-4" >
10+ < nav className = "space-y-2" >
11+ < div className = "block w-full text-left text-sm text-muted-foreground py-1" >
12+ Em Desenvolvimento
13+ </ div >
14+ </ nav >
15+ </ div >
16+ </ div >
17+
18+ { /* Conteúdo Principal - Coluna Direita */ }
19+ < div className = "flex-1 space-y-8 border-l pl-8" >
20+ < div className = "space-y-4" >
21+ < h1 className = "text-4xl font-bold bg-gradient-to-r from-primary to-accent bg-clip-text text-transparent" >
22+ Exemplos Práticos
23+ </ h1 >
24+ < p className = "text-xl text-muted-foreground" >
25+ Exemplos práticos e casos de uso dos pacotes Devitools.
26+ </ p >
27+ </ div >
28+
29+ < Card className = "text-center py-12" >
30+ < CardHeader className = "pb-4" >
31+ < div className = "flex justify-center mb-4" >
32+ < div className = "relative" >
33+ < Code className = "h-12 w-12 text-muted-foreground" />
34+ < Clock className = "h-6 w-6 text-amber-500 absolute -top-1 -right-1" />
35+ </ div >
36+ </ div >
37+ < CardTitle className = "text-2xl" > Exemplos em Desenvolvimento</ CardTitle >
38+ < CardDescription className = "text-base" >
39+ Estamos preparando exemplos práticos e detalhados para cada pacote
40+ </ CardDescription >
41+ </ CardHeader >
42+ < CardContent >
43+ < p className = "text-muted-foreground" >
44+ Em breve você encontrará aqui exemplos completos de uso dos pacotes Devitools,
45+ incluindo casos de uso comuns, implementações de referência e código de exemplo pronto para usar.
46+ </ p >
47+ </ CardContent >
48+ </ Card >
49+ </ div >
50+ </ div >
51+ ) ;
52+ } ;
53+
54+ export default DocsExamples ;
0 commit comments