blob: c6fb19bffe9c3b9f1a6ec28cd9e9c5feae2da370 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
---
import Page from "../layouts/Page.astro";
import projects from "../data/projects.json";
import "../styles/cards.css";
import GitHubProjects from "../components/GitHubProjects";
---
<Page title="Projects" description="Things that I have been working on in the past, and present">
<main>
<div class="grid">
{
projects.map((project) => {
return (
<article class="card">
<h1>{project.name}</h1>
<p>{project.description}</p>
<div class="row">
{project.links.map((link) => {
return (
<a href={link.url} target={link.external ? "_blank" : "_self"}>{link.name}</a>
)
})}
</div>
</article>
)
})
}
</div>
<!--
<h2>Andrew Lee GitHub Repositories</h2>
<GitHubProjects client:visible username="Alee14" isOrganization=false />-->
<h2>AleeCorp/Alee Productions GitHub Repositories</h2>
<GitHubProjects client:visible username="alee14-projects" isOrganization=true />
</main>
</Page>
<style>
.row {
display: flex;
flex-direction: row;
gap: 1em;
}
</style>
|