code: nextjs,frontends,theme (2 files)

This commit is contained in:
2025-12-26 04:29:10 +00:00
parent 7a25a723ab
commit 3c8add6e92
2 changed files with 6 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
import { PACKAGE_CATALOG } from '../../../package-lib/package-catalog'
import { loadPackageComponents } from '../../declarative-component-renderer'
import { buildPackageRegistry, exportAllPackagesForSeed } from '../package-glue'
import { loadPackageComponents } from '../../../rendering/declarative-component-renderer'
import { buildPackageRegistry, exportAllPackagesForSeed } from '../../package-glue'
import { setPackageRegistry } from './set-package-registry'
import { packageSystemState } from './package-system-state'

View File

@@ -1,10 +1,10 @@
'use client'
import { createTheme, alpha, type Shadows } from '@mui/material/styles'
import { colors } from '../colors'
import { fonts } from '../fonts'
import { layout } from '../layout'
import { typography } from '../typography'
import { colors } from '../base/colors'
import { fonts } from '../base/fonts'
import { layout } from '../base/layout'
import { typography } from '../base/typography'
import { getComponentOverrides } from '../components'
const custom = { fonts, borderRadius: layout.borderRadius, contentWidth: layout.contentWidth, sidebar: layout.sidebar, header: layout.header }