feat(wise-hearted-decor): initial luxury event decor website build with 5 pillars, portfolio, and booking funnel

This commit is contained in:
2026-08-29 16:58:53 -07:00
commit 550b4d50cf
8913 changed files with 1959983 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
export type BuildManifest = {
devFiles: readonly string[];
ampDevFiles: readonly string[];
polyfillFiles: readonly string[];
lowPriorityFiles: readonly string[];
rootMainFiles: readonly string[];
rootMainFilesTree: {
[appRoute: string]: readonly string[];
};
pages: {
'/_app': readonly string[];
[page: string]: readonly string[];
};
ampFirstPages: readonly string[];
};
export declare function getPageFiles(buildManifest: BuildManifest, page: string): readonly string[];