diff --git a/bun.lockb b/bun.lockb new file mode 100755 index 0000000..828f5be Binary files /dev/null and b/bun.lockb differ diff --git a/public/ffk.png b/public/ffk.png new file mode 100644 index 0000000..4d65bc2 Binary files /dev/null and b/public/ffk.png differ diff --git a/src/components/Projects/Projects.tsx b/src/components/Projects/Projects.tsx index 5779922..b99551c 100644 --- a/src/components/Projects/Projects.tsx +++ b/src/components/Projects/Projects.tsx @@ -1,4 +1,4 @@ -import { Keystache, Fundsolvr, Duck, Github } from "../icons"; +import { Keystache, Fundsolvr, Duck, Github, FFK } from "../icons"; import SectionTitle from "../shared/SectionTitle"; export default function Projects() { return ( @@ -8,9 +8,32 @@ export default function Projects() { subheading="Empowering Individuals And Communities" />
+
+ +

+ FFK +

+

+ The Foundation Formation Kit (FFK) is a set of tools provided by + OSJF to increase access to tax-advantaged, non-profit structures for + open-source projects of all sizes. With easy to use forms, + instructions, and even a webapp, the FFK will transform the + open-source industry into a robust ecosystem of non-profits, + accelerating capital allocation and supporting the development of + open-source technologies and protocols. +

+
+ + + +
+
- +

Fundsolvr @@ -23,9 +46,11 @@ export default function Projects() { resolution tools provide assurances that further increase market efficiencies.

-
- {/* */} - + @@ -44,7 +69,6 @@ export default function Projects() { seamless OAUTH-style login experience across NOSTR-applications.

- {/* */} diff --git a/src/components/icons/FFK.tsx b/src/components/icons/FFK.tsx new file mode 100644 index 0000000..89d0b0c --- /dev/null +++ b/src/components/icons/FFK.tsx @@ -0,0 +1,30 @@ +export default function FFK() { + return ( + + + + + + + + + + ); +} diff --git a/src/components/icons/index.ts b/src/components/icons/index.ts index 58414ce..5ee680b 100644 --- a/src/components/icons/index.ts +++ b/src/components/icons/index.ts @@ -14,6 +14,7 @@ import BoltFun from "./BoltFun"; import Alby from "./Alby"; import Discord from "./Discord"; import Grove from "./Grove"; +import FFK from "./FFK"; export { Logo, Mail, @@ -31,4 +32,5 @@ export { Alby, Discord, Grove, + FFK, };