2025-11-16 09:49:07 -05:00

47 lines
1.1 KiB
TypeScript

/* eslint-disable */
/* This is a auto generated file for building the project */
import type { PageMeta } from "@webstudio-is/sdk";
import type { System, ResourceRequest } from "@webstudio-is/sdk";
export const getResources = (_props: { system: System }) => {
const _data = new Map<string, ResourceRequest>([
])
const _action = new Map<string, ResourceRequest>([
])
return { data: _data, action: _action }
}
export const getPageMeta = ({
system,
resources,
}: {
system: System;
resources: Record<string, any>;
}): PageMeta => {
return {
title: "Page not found",
description: undefined,
excludePageFromSearch: false,
language: undefined,
socialImageAssetName: undefined,
socialImageUrl: undefined,
status: 404,
redirect: undefined,
custom: [
],
};
};
type Params = Record<string, string | undefined>;
export const getRemixParams = ({ ...params }: Params): Params => {
params[0] = params["*"]
delete params["*"]
return params
}
export const contactEmail = "inasahealthcare@gmail.com";