website/versioned_docs/version-v2.7/compatible-applications/index.mdx
import React from 'react' import { categorizedApps } from './applications.js' import styles from './grid.module.css'
Explore compatible applications tested by the FerretDB team.
export const Grid = ({ apps }) => (
<div className={styles.container}> <div className={styles.grid}> {apps.map(({ name, logo, link }) => ( <a key={name} href={link} target="_blank" rel="noopener noreferrer" className={`${styles.card} card`} > {name}
</a>
))}
Want to see your application listed here? Click the "Edit this page" button at the bottom of this page to submit a pull request with your application details. You can also join our community to tell us about it.