export type fetchHomePageReturn = () => Promise; export type HomePageResponse = { nodeByUri: { id: string; content: string; }; }; export type getHomePageReturn = () => Promise; export type HomePage = { id: string; content: string; }; export type HomePageProps = { data: HomePage; };