mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-04-27 07:04:55 +00:00
27 lines
938 B
TypeScript
27 lines
938 B
TypeScript
import { Separator } from '@/components/ui/separator'
|
|
import { GitBranch } from '@phosphor-icons/react'
|
|
import cicdData from '@/data/documentation/cicd-data.json'
|
|
|
|
export function CicdOverviewSection() {
|
|
return (
|
|
<div className="space-y-4">
|
|
<div className="flex items-center gap-4">
|
|
<div className="w-16 h-16 rounded-xl bg-gradient-to-br from-primary to-accent flex items-center justify-center">
|
|
<GitBranch size={32} weight="duotone" className="text-white" />
|
|
</div>
|
|
<div>
|
|
<h1 className="text-4xl font-bold">{cicdData.title}</h1>
|
|
<p className="text-lg text-muted-foreground">{cicdData.subtitle}</p>
|
|
</div>
|
|
</div>
|
|
|
|
<Separator />
|
|
|
|
<div className="space-y-4">
|
|
<h2 className="text-2xl font-semibold">{cicdData.overviewTitle}</h2>
|
|
<p className="text-foreground/90 leading-relaxed">{cicdData.overview}</p>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|