From d4f98e2d1f85fbdffa2470071e22bba2dacc00c0 Mon Sep 17 00:00:00 2001 From: Leo Goetz Date: Fri, 8 May 2026 15:37:39 +0200 Subject: inital commit --- src/components/ProjectCard.astro | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/components/ProjectCard.astro (limited to 'src/components/ProjectCard.astro') diff --git a/src/components/ProjectCard.astro b/src/components/ProjectCard.astro new file mode 100644 index 0000000..a4fa4f7 --- /dev/null +++ b/src/components/ProjectCard.astro @@ -0,0 +1,14 @@ +--- +const { projects } = Astro.props; +--- + +{ + projects.map((project: Project) => ( +
+ +

{project.name}

+
+

{project.description}

+
+ )) +} -- cgit v1.3.1