export const useBackend = () => { const api = useApi(); const getMeta = (options = {}) => api.get('/meta', options); const postContact = (contact: ContactRequest, options = {}) => api.post('/contact', contact, options); return { getMeta, postContact }; };