import { Features } from "@/constants"; import React from "react"; import { Card, CardContent, CardHeader, CardTitle } from "../ui/card"; const FeaturesSection = () => { return (

Accelerate your{" "} development

Build secure, and scalable web applications with SVR.JS. Open-source, configurable, and able to handle high request loads.

{Features.map(({ icon, title, description }) => ( {icon} {title} {description} ))}
); }; export default FeaturesSection;