import type { FC } from 'react' import { Button } from '../Button' import styles from './CookieConsent.module.css' type Props = { open: boolean onClickAccept: () => void onClickDeny: () => void } export const CookieConsent: FC = ({ open, onClickAccept, onClickDeny, }) => { if (!open) return null return (

Liam ERD Cookie Consent

By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts.

Privacy Policy
) }