import { motion } from "framer-motion"; export const FullStackVector = () => { return (
{/* Subtle Background */}
{/* Database Component */} {/* Database Icon */}
{/* Database layers */}
{/* Database Label */} Database
{/* Server Stack */} {/* Server Stack */}
{Array.from({ length: 4 }).map((_, i) => (
{/* Server indicator */} {/* Server number */} #{i + 1}
))}
{/* API Label */} API Server
{/* Gateway Component */} {/* Gateway Icon */}
{/* Gateway Label */} Gateway
{/* Connection Lines */} {/* Performance Metrics */}
99.9% Uptime
50ms Response
{/* Technology Stack */}
{[ { name: "Node.js", color: "bg-green-600" }, { name: "SQL", color: "bg-blue-600" }, { name: "Redis", color: "bg-red-600" } ].map((tech, index) => ( {tech.name} ))}
{/* Data Flow Indicator */}
); };