We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b805014 commit 5b39eecCopy full SHA for 5b39eec
1 file changed
website/src/components/Projects.astro
@@ -2,16 +2,17 @@
2
import { render } from "astro:content";
3
import { getCollection } from "astro:content";
4
const projects = await getCollection("projects");
5
+import { Content } from "../assets/text/Projects.md";
6
---
7
8
<section
9
id="projects"
10
class="bg-bdt-blue/60 bg-[url(../assets/backgrounds/wavy.webp)] bg-cover bg-blend-multiply"
11
>
12
<div class="max-w-[130ch] mx-auto py-12 px-3">
- <h2 class="font-bold font-serif text-2xl text-center mb-9">
13
- BDT's Projects
14
- </h2>
+ <div class="max-w-[85ch] mx-auto pb-9 prose">
+ <Content />
15
+ </div>
16
<ul class="flex flex-col sm:flex-row gap-6 justify-center">
17
{
18
projects.map(async (project) => {
0 commit comments