feat(login): 替换登录页面图标

This commit is contained in:
liuyonghe0111 2025-12-19 15:37:42 +08:00
parent f9777b8785
commit 2624a7086e
1 changed files with 13 additions and 13 deletions

View File

@ -1,11 +1,11 @@
'use client'
import Image from 'next/image'
import { LoginForm } from './components/login-form'
import { LeftPanel } from './components/LeftPanel'
import { IconButton } from '@/components/ui/button'
import { useRouter } from 'next/navigation'
'use client';
import Image from 'next/image';
import { LoginForm } from './components/login-form';
import { LeftPanel } from './components/LeftPanel';
import { IconButton } from '@/components/ui/button';
import { useRouter } from 'next/navigation';
const scrollBg = '/images/login/v1/bg.png'
const scrollBg = '/images/login/v1/bg.png';
const images = [
'/images/login/v1/1.png',
'/images/login/v1/2.png',
@ -17,14 +17,14 @@ const images = [
'/images/login/v1/8.png',
'/images/login/v1/9.png',
'/images/login/v1/10.png',
]
];
export default function LoginPage() {
const router = useRouter()
const router = useRouter();
const handleClose = () => {
router.replace('/')
}
router.replace('/');
};
return (
<div className="flex h-screen realoative w-screen overflow-hidden">
@ -39,7 +39,7 @@ export default function LoginPage() {
<div className="relative flex w-full flex-col items-center justify-center px-6">
{/* Logo */}
<div className="relative mb-8 h-[48px] w-[120px] sm:mb-12 sm:h-[64px] sm:w-[160px]">
<Image src="/logo.svg" alt="Crush Level" fill className="object-contain" priority />
<i className="iconfont-v2 iconv2-Logo" style={{ fontSize: '50px' }} />
</div>
{/* 登录表单 */}
@ -48,5 +48,5 @@ export default function LoginPage() {
</div>
</div>
</div>
)
);
}