24 lines
No EOL
753 B
TypeScript
24 lines
No EOL
753 B
TypeScript
import Link from 'next/link';
|
|
import { ProjectCard } from '@/components/ProjectCard/ProjectCard';
|
|
import { projects } from '@/data/projects';
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className="container">
|
|
<section className="intro">
|
|
<h1>Hi! I'm Charlotte</h1>
|
|
<h2>About Me</h2>
|
|
<p>I'm a cybersecurity student from the Northeast USA. I currently work as a security engineer at the Leahy Center in Burlington, VT.</p>
|
|
</section>
|
|
|
|
<section className="projects">
|
|
<h2>My Projects</h2>
|
|
<div className="project-grid">
|
|
{projects.map((project) => (
|
|
<ProjectCard key={project.id} project={project} />
|
|
))}
|
|
</div>
|
|
</section>
|
|
</div>
|
|
);
|
|
} |