登录页面与组件样式调整

This commit is contained in:
2025-03-19 15:49:18 +08:00
parent eaae095d0e
commit 906693be10
28 changed files with 1405 additions and 206 deletions

12
src/app/test/route.ts Normal file
View File

@@ -0,0 +1,12 @@
import {NextRequest, NextResponse} from 'next/server'
import {cookies} from 'next/headers'
export async function GET(req: NextRequest) {
const store = await cookies()
store.set('test','test')
return NextResponse.json(JSON.stringify({
'test': 'value',
}))
}