import PalmCard from "../PalmCard/PalmCard"; import Grid from "../ui/Grid/Grid" import Section from "../ui/Section/Section" import styles from "./PalmSection.module.scss" const palms = [ { title: "Palm" }, { title: "Palm" }, { title: "Palm" }, { title: "Palm" }, { title: "Palm" }, ]; export default function PalmSection() { return (
{palms.map((palm, index) => ( ))}
) }