import Link from 'next/link'; import { ProjectCard } from '@/components/ProjectCard/ProjectCard'; import { projects } from '@/data/projects'; export default function Home() { return (

Hi! I'm Charlotte

About Me

I'm a cybersecurity student from the Northeast USA. I currently work as a security engineer at the Leahy Center in Burlington, VT.

My Projects

{projects.map((project) => ( ))}
); }