fix: 提交视频

This commit is contained in:
2025-07-26 01:37:32 -07:00
parent 28c72a36fa
commit 4a0d4ff1c9
3 changed files with 12 additions and 17 deletions
+9
View File
@@ -10,6 +10,7 @@ import { redirect } from 'next/navigation';
import FooterCopyright from '@/components/main/FooterCopyright';
import FullScreenVideoBackground from '@/components/main/FullScreenVideoBackground';
import HomeContent from '@/components/main/HomeContent';
import Image from 'next/image';
export default async function Home() {
const Authorization = (await cookies()).get('Authorization')?.value;
@@ -38,6 +39,14 @@ export default async function Home() {
<HomeContent />
</main>
<FooterCopyright />
<Image
src={'./logo.png'}
height={37}
width={28}
className={'fixed bottom-8 left-1/2 -translate-x-1/2'}
alt='logo'
unoptimized
></Image>
</>
);
}