diff --git a/src/components/projects/ProjectSection.astro b/src/components/projects/ProjectSection.astro new file mode 100644 index 0000000..37f1720 --- /dev/null +++ b/src/components/projects/ProjectSection.astro @@ -0,0 +1,135 @@ +--- +import annualProjects from "../../data/annualProjects.json"; + +interface Props { + width?: string; +} + +const { width = "100%" } = Astro.props; +--- + + + + + { + Object.entries(annualProjects).map( + ([title, project], index) => ( + + + + + + {title} + + + {project.description} + + + + + + + + + ) + ) + } + + + + + + +
+ {project.description} +