import Image from "next/image"; import Config from "../../config.json"; export default function Home() { return (
Avatar

{Config.name}

{Config.description}

{Config.links.map((link, index) => { return (
{link.title}
); })}

View the website source here

); }