This commit is contained in:
Li1304553726 2025-11-19 22:26:14 +08:00
parent 3fd05e9beb
commit 33d1bd55d4
3 changed files with 23 additions and 2 deletions

View File

@ -15,6 +15,7 @@ const LearnPage = () => {
];
return (
<div>
<div className="w-5/6 mx-auto ">
{/* 顶部 Logo */}
<div className="flex justify-start mb-4">
@ -96,6 +97,13 @@ const LearnPage = () => {
</div>
</div>
</div>
<div className='flex'>
<div className='w-5/6 bg-[#0082e9] h-20'
style={{clipPath: 'polygon(0 0, calc(100% - 150px) 0%, calc(100% - 20px) 100%, 0% 100%)'}}
></div>
<div className='items-center justify-center flex font-bold text-sky-900 text-5xl'></div>
</div>
</div>
);
};

View File

@ -0,0 +1,11 @@
export function Footer() {
return (
<div className='w-full h-190 bg-[#0082e9] flex items-center justify-center'
style={{backgroundImage: "url('/public/images/carousel-4.jpg')"}}
>
<div className='text-white text-2xl'>
</div>
</div>
)
}

View File

@ -12,6 +12,7 @@ import { LectureHall } from "@/components/news/body/FireNews/LectureHall";
import { MicroVision } from "@/components/news/body/FireNews/MicroVision";
import { Hotline } from "@/components/news/body/FireNews/Hotline";
import { AutoCarouselDemo } from "@/components/AutoCarousel";
import { Footer } from "@/components/news/footer/footer";
export function meta( ) {
return [
@ -40,6 +41,7 @@ export default function Home() {
<CultureBgPage />
<Integrated />
</div>
<Footer />
</div>
);
}