import axiosInstance from "../lib/axios"; export const fetchContentPageData = async ( endpoint: string, ): Promise => { try { const response = await axiosInstance.get(endpoint); return response.data; } catch { return null; } };