Autosave: 20260217-224141

This commit is contained in:
Flatlogic Bot 2026-02-17 22:41:41 +00:00
parent deb8071e36
commit 729cadeeec
2 changed files with 4 additions and 4 deletions

View File

@ -6,10 +6,10 @@ export const localStorageDarkModeKey = 'darkMode'
export const localStorageStyleKey = 'style'
export const containerMaxW = 'xl:max-w-full xl:mx-auto 2xl:mx-20'
export const containerMaxW = 'max-w-[1600px] mx-auto'
export const appTitle = 'created by Flatlogic generator!'
export const getPageTitle = (currentPageTitle: string) => `${currentPageTitle}${appTitle}`
export const tinyKey = process.env.NEXT_PUBLIC_TINY_KEY || ''
export const tinyKey = process.env.NEXT_PUBLIC_TINY_KEY || ''

View File

@ -102,11 +102,11 @@ export default function LayoutAuthenticated({
menu={menuNavBar}
className={`${lockoutBanner ? 'top-12' : ''}`}
/>
<div className="max-w-7xl mx-auto">
<div className="max-w-[1600px] mx-auto">
{children}
</div>
<FooterBar />
</div>
</div>
)
}
}