again i havee no clue but the ports aren't working

This commit is contained in:
lora322 2025-09-21 16:19:09 +00:00 committed by GitHub
parent 3a5501aac3
commit 110730015d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 36 additions and 19 deletions

15
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,15 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}"
}
]
}

View File

@ -1,6 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
/// <reference path="./build/types/routes.d.ts" />
/// <reference path="./.next/types/routes.d.ts" />
// NOTE: This file should not be edited
// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.

View File

@ -99,24 +99,26 @@ export default function LayoutAuthenticated({
isAsideMobileExpanded ? 'ml-60 lg:ml-0' : ''
}`}
>
<NavBarItemPlain
display='flex lg:hidden'
onClick={() => setIsAsideMobileExpanded(!isAsideMobileExpanded)}
>
<BaseIcon
path={isAsideMobileExpanded ? mdiBackburger : mdiForwardburger}
size='24'
/>
</NavBarItemPlain>
<NavBarItemPlain
display='hidden lg:flex xl:hidden'
onClick={() => setIsAsideLgActive(true)}
>
<BaseIcon path={mdiMenu} size='24' />
</NavBarItemPlain>
<NavBarItemPlain useMargin>
<Search />
</NavBarItemPlain>
<>
<NavBarItemPlain
display='flex lg:hidden'
onClick={() => setIsAsideMobileExpanded(!isAsideMobileExpanded)}
>
<BaseIcon
path={isAsideMobileExpanded ? mdiBackburger : mdiForwardburger}
size='24'
/>
</NavBarItemPlain>
<NavBarItemPlain
display='hidden lg:flex xl:hidden'
onClick={() => setIsAsideLgActive(true)}
>
<BaseIcon path={mdiMenu} size='24' />
</NavBarItemPlain>
<NavBarItemPlain useMargin>
<Search />
</NavBarItemPlain>
</>
</NavBar>
<AsideMenu
isAsideMobileExpanded={isAsideMobileExpanded}