import { memo } from "react";
import Link from "next/link";
import Image from "next/image";
import classNames from "classnames";
import styles from "./Selfie.module.css";
import meJpg from "../../public/static/images/me.jpg";
type Props = {
className?: string;
};
const Selfie = ({ className }: Props) => (
Jake Jarvis
);
export default memo(Selfie);