Skip to content

Commit

Permalink
swap out symbiota content
Browse files Browse the repository at this point in the history
  • Loading branch information
subject026 committed Jan 17, 2024
1 parent df66544 commit a61a711
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
Binary file added apps/site/public/img/symbiota_banner.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions apps/site/src/content/index/members/_index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ import { z } from "zod";

import * as ccaUnsafe from "./CCA.md";
import * as laborDaoUnsafe from "./laborDAO.md";
import * as pactUnsafe from "./pact.md";
import * as symbiotaUnsafe from "./symbiota.md";

const ZMemberCard = z.object({
frontmatter: ZMemberCardProps,
});

const { frontmatter: cca } = ZMemberCard.parse(ccaUnsafe);
const { frontmatter: laborDao } = ZMemberCard.parse(laborDaoUnsafe);
const { frontmatter: pact } = ZMemberCard.parse(pactUnsafe);
const { frontmatter: symbiota } = ZMemberCard.parse(symbiotaUnsafe);

export { cca, laborDao, pact };
export { cca, laborDao, symbiota };
6 changes: 0 additions & 6 deletions apps/site/src/content/index/members/pact.md

This file was deleted.

6 changes: 6 additions & 0 deletions apps/site/src/content/index/members/symbiota.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
name: Symbiota
info: A collective of event-focused organisations devoted to new forms of culture and enquiry, structured as a not-for-profit worker co-operative.
logo: /img/symbiota_banner.jpg
link: https://symbiota.coop/
---
4 changes: 2 additions & 2 deletions apps/site/src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ import {
import Layout from "../layouts/Layout.astro";
import { heading, subheading } from "../content/index/hero/_index";
import { cca, laborDao, pact } from "../content/index/members/_index";
import { cca, laborDao, symbiota } from "../content/index/members/_index";
import { values } from "../content/index/values/_index";
---

<Layout title="Breadchain Cooperative.">
<Hero heading={heading} subheading={subheading} />
<InfoCards />
<Members members={[cca, laborDao, pact]} />
<Members members={[cca, laborDao, symbiota]} />
<Values values={values} />
<CTASection />
</Layout>
Expand Down

0 comments on commit a61a711

Please sign in to comment.