Skip to content

Commit 20f546e

Browse files
committed
Issue #10: Add AAIF
1 parent 6ca4cc4 commit 20f546e

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed

src/components/block/BrandWall.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export interface Brand {
2929
<p>
3030
<slot />
3131
</p>
32-
<div class="grid grid-cols-2 sm:grid-cols-2 md:grid-cols-5 lg:grid-cols-5 xl:grid-cols-5 gap-4 sm:gap-6 md:gap-8 py-6 md:py-8">
32+
<div class="grid grid-cols-2 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-3 xl:grid-cols-3 gap-4 sm:gap-6 md:gap-8 py-6 md:py-8">
3333
{brands.map((brand) => (
3434
<a
3535
href={brand.href}

src/components/blockopensource/foundations.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
import type { Brand } from "@/components/block/BrandWall.astro";
22

33
export const foundations: Brand[] = [
4+
{
5+
name: "Agentic AI Foundation",
6+
href: "https://aaif.io/",
7+
iconName: "block-open-source/aaif",
8+
},
49
{
510
name: "The Linux Foundation",
611
href: "https://www.linuxfoundation.org/",
Lines changed: 15 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)