import { Card, CardFooter, Container, Divider, Heading, Image, Link, Stack, Text, } from "@chakra-ui/react"; import projects from "../../data/public-projects.json"; export function meta() { return [ { title: "For Hiring Teams - Car Crushers", }, { name: "robots", content: "noindex", }, ]; } export default function () { return ( About Evan
Hello! Thank you for your interest in me as a candidate. Are you wondering if I did all those things I mentioned on my resume? If so, yes, I did. Below is a list of some things I have worked on during my time here, some of them more strongly related than others. Thank you for taking the time to look at a history of my past and current work.
{projects.map((project) => ( {`Logo {project.name} ({project.timespan}) Time Span: {project.timespan}
{project.description}
{project.work_link ? ( Project Work ) : null} {project.landing_link ? ( Project Home Page ) : null}
))}
); }