fix: 首页出版效果

This commit is contained in:
2025-07-27 00:18:31 -07:00
parent a9108fd392
commit f534c101dd
20 changed files with 444 additions and 258 deletions
-9
View File
@@ -10,7 +10,6 @@ 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;
@@ -39,14 +38,6 @@ 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>
</>
);
}