import Image from "next/image"; const features = [ { src: "/assets/img/demos/next.js-circle.svg", srcSet: "/assets/img/demos/next.js-circle.svg 2x", width: 48, height: 50, text: `Built with Next.js
& React`, }, { src: "/assets/img/demos/fi1.png", srcSet: "/assets/img/demos/fi1@2x.png 2x", width: 50, height: 50, text: "Built with
Tailwind CSS", }, { src: "/assets/img/demos/fi2.png", srcSet: "/assets/img/demos/fi2@2x.png 2x", width: 50, height: 50, text: "SEO-friendly
Coding", }, { src: "/assets/img/demos/fi3.png", srcSet: "/assets/img/demos/fi3@2x.png 2x", width: 50, height: 50, text: "Followed W3C
Standard", }, { src: "/assets/img/demos/fi4.png", srcSet: "/assets/img/demos/fi4@2x.png 2x", width: 57, height: 50, text: "Retina-ready
Graphics", }, { src: "/assets/img/demos/fi5.png", srcSet: "/assets/img/demos/fi5@2x.png 2x", width: 50, height: 50, text: "One-page
Layout Option", }, { src: "/assets/img/demos/fi6.png", srcSet: "/assets/img/demos/fi6@2x.png 2x", width: 50, height: 50, text: "Isotope
Filterable Gallery", }, { src: "/assets/img/demos/fi11.png", srcSet: "/assets/img/demos/fi11@2x.png 2x", width: 45, height: 50, text: `Both Server & Client
side Rendered`, }, { src: "/assets/img/demos/fi9.png", srcSet: "/assets/img/demos/fi9@2x.png 2x", width: 50, height: 50, text: "Animations
on Page Scroll", }, { src: "/assets/img/demos/fi10.png", srcSet: "/assets/img/demos/fi10@2x.png 2x", width: 54, height: 50, text: "Top-Notch Support
& Free Updates", }, ]; export default function Technologies() { return ( <> {features.map((feature, index) => (
image

))} ); }