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

{Config.name}

{Config.description}

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

View the website source here

)}
); }