summaryrefslogtreecommitdiff
path: root/src/pages/projects.astro
blob: 2a388a7de6690c0f23b44bfcfd0d94090bef49ab (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
43
44
45
46
47
48
49
50
51
---
import Layout from "../layouts/Layout.astro";
import ProjectCard from "../components/ProjectCard.astro";

const projects: Project[] = [
  {
    name: "TennisRecords",
    description: "Digitaler Tennis Match Tracker mit hilfe von QR-Codes.",
    image: "src",
    alt: "TennisRecords Logo",
    url: "https://tennisrecords.de",
  },
  {
    name: "Götz Maler Homepage",
    description: "Homepage eines Malerfachbetriebs.",
    image: "src",
    alt: "alttag",
    url: "https://goetz-maler.de",
  },
  {
    name: "Bürgerliste Mantel",
    description: "Webseite der Bürgerliste Mantel",
    image: "src",
    alt: "alttag",
    url: "https://buergerliste-mantel.de",
  },
  {
    name: "VCard Generator",
    description: "Generator für das erstellen von VCards als QR-Code.",
    image: "src",
    alt: "alttag",
    url: "https://vcard.leogtz.de",
  },
  {
    name: "BestKabu (contribution)",
    description: "Browser extension um DigiKabu der BSZ Wiesau zu verbessern.",
    image: "src",
    alt: "alttag",
    url: "https://github.com/Random-user420/bestKabu",
  },
];
---

<Layout>
  <p class="text-center">
    Status Page: <a href="https://status.leogtz.de/" class="underline"
      >https://status.leogtz.de/</a
    >
  </p>
  <ProjectCard projects={projects} />
</Layout>