import React from "react"; import Head from "next/head"; import Image from "next/image"; import ProjectCard from "../ProjectCard"; import styles from "./GitGallery.module.sass"; export function GitGallery(props) { var links = []; props.publicGiteaRepos.forEach((repo) => { links.push( ); }); // props.publicGithubRepos.forEach((repo) => { // links.push( // // ); // }); return (

These are my public repositories:

{links}
); }