--- import Layout from "../layouts/Layout.astro"; import Card from "../components/Card.astro"; import Footer from "../components/Footer.astro"; import { stuff } from '../constants/stuff'; // const isDev = import.meta.env.DEV; // const getOriginUrl = (path: string) => isDev ? `http://localhost:5000/${path}` : path; ---
Ayo Ayco's picture

AyoAyco

    { stuff.map(({ icon, text, link }) => (
  • {icon} {text} {link && {link.text}}
  • )) }
Now Certified Software Architecture Professional