import Image from 'next/image'; import { z } from 'zod'; import backgroundPattern from '@documenso/assets/images/background-pattern.png'; import { OSSFriendsContainer } from './container'; import { TOSSFriendsSchema, ZOSSFriendsSchema } from './schema'; export default async function OSSFriendsPage() { const ossFriends: TOSSFriendsSchema = await fetch('https://formbricks.com/api/oss-friends', { next: { revalidate: 3600, }, }) .then(async (res) => res.json()) .then(async (data) => z.object({ data: ZOSSFriendsSchema }).parseAsync(data)) .then(({ data }) => data) .catch(() => []); return (

Our OSS Friends

We love open source and so should you, below you can find a list of our friends who are just as passionate about open source as we are.

background pattern
); }