import Link from "next/link" import Image from "next/image" export default function Home() { return (

Netflix

Who's watching?

{ USERS.map((user, index) => (

{user.name}

))}
) } const USERS = [ { name:'Alberto', link:'/browse', avatar:'https://avatars.dicebear.com/api/male/124.svg' }, { name:'Kids', link:'/', avatar:'https://avatars.dicebear.com/api/male/122.svg' }, { name:'Add profile', link:'/', avatar:'https://avatars.dicebear.com/api/female/12.svg' // icon:'...' } ]