Spaces:
Running
Running
import { motion } from 'framer-motion'; | |
import { GithubConnection } from './GithubConnection'; | |
import { NetlifyConnection } from './NetlifyConnection'; | |
export default function ConnectionsTab() { | |
return ( | |
<div className="space-y-4"> | |
{/* Header */} | |
<motion.div | |
className="flex items-center gap-2 mb-2" | |
initial={{ opacity: 0, y: 20 }} | |
animate={{ opacity: 1, y: 0 }} | |
transition={{ delay: 0.1 }} | |
> | |
<div className="i-ph:plugs-connected w-5 h-5 text-purple-500" /> | |
<h2 className="text-lg font-medium text-bolt-elements-textPrimary">Connection Settings</h2> | |
</motion.div> | |
<p className="text-sm text-bolt-elements-textSecondary mb-6"> | |
Manage your external service connections and integrations | |
</p> | |
<div className="grid grid-cols-1 gap-4"> | |
<GithubConnection /> | |
<NetlifyConnection /> | |
</div> | |
</div> | |
); | |
} | |