import { typeStatic, Type } from"@sinclair/typebox";
exportconst sitePrompt = Type.String({
minLength: 30,
maxLength: 1000,
description: "User prompt for the site, describing the purpose and main features of the site.",
});
exporttypeSitePrompt = Static<typeof sitePrompt>;