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
+1
View File
@@ -0,0 +1 @@
export * from 'next/dist/compiled/@next/font/dist/google'
View File
+1
View File
@@ -0,0 +1 @@
/* target file for webpack loader */
+30
View File
@@ -0,0 +1,30 @@
export type AdjustFontFallback = {
fallbackFont: string
ascentOverride?: string
descentOverride?: string
lineGapOverride?: string
sizeAdjust?: string
}
export type FontLoader = (options: {
functionName: string
variableName: string
data: any[]
emitFontFile: (
content: Buffer,
ext: string,
preload: boolean,
isUsingSizeAdjust?: boolean
) => string
resolve: (src: string) => string
isDev: boolean
isServer: boolean
loaderContext: any
}) => Promise<{
css: string
fallbackFonts?: string[]
variable?: string
adjustFontFallback?: AdjustFontFallback
weight?: string
style?: string
}>
+1
View File
@@ -0,0 +1 @@
export { default } from 'next/dist/compiled/@next/font/dist/local'
View File
+1
View File
@@ -0,0 +1 @@
/* target file for webpack loader */