Skip to content

Commit d47e831

Browse files
committed
feat: add Sponsors with data and sponsor CBA
1 parent 949aeb2 commit d47e831

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

public/cba.png

178 KB
Loading

src/pages/index.astro

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,21 @@
11
---
22
import Layout from "../layouts/Layout.astro";
3+
import Sponsors from "../components/Sponsors.astro";
34
45
// Welcome to Astro! Wondering what to do next? Check out the Astro documentation at https://docs.astro.build
56
// Don't want to use any of this? Delete everything in this file, the `assets`, `components`, and `layouts` directories, and start fresh.
7+
const sponsors = [
8+
{ name: 'CBA', image: '/cba.png', url: 'https://cbacoch.org/' },
9+
// { name: 'Sponsor2', image: '/', url: '#' },
10+
// { name: 'Sponsor3', image: '/', url: '#' },
11+
// { name: 'Sponsor4', image: '/', url: '#' },
12+
];
613
---
714

815
<Layout>
16+
<Sponsors
17+
id="sponsors"
18+
sponsors={sponsors}
19+
/>
920
</Layout>
21+

0 commit comments

Comments
 (0)