This commit is contained in:
parent
3fd05e9beb
commit
33d1bd55d4
|
|
@ -15,6 +15,7 @@ const LearnPage = () => {
|
||||||
];
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
<div>
|
||||||
<div className="w-5/6 mx-auto ">
|
<div className="w-5/6 mx-auto ">
|
||||||
{/* 顶部 Logo */}
|
{/* 顶部 Logo */}
|
||||||
<div className="flex justify-start mb-4">
|
<div className="flex justify-start mb-4">
|
||||||
|
|
@ -96,6 +97,13 @@ const LearnPage = () => {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</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>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
@ -12,6 +12,7 @@ import { LectureHall } from "@/components/news/body/FireNews/LectureHall";
|
||||||
import { MicroVision } from "@/components/news/body/FireNews/MicroVision";
|
import { MicroVision } from "@/components/news/body/FireNews/MicroVision";
|
||||||
import { Hotline } from "@/components/news/body/FireNews/Hotline";
|
import { Hotline } from "@/components/news/body/FireNews/Hotline";
|
||||||
import { AutoCarouselDemo } from "@/components/AutoCarousel";
|
import { AutoCarouselDemo } from "@/components/AutoCarousel";
|
||||||
|
import { Footer } from "@/components/news/footer/footer";
|
||||||
|
|
||||||
export function meta( ) {
|
export function meta( ) {
|
||||||
return [
|
return [
|
||||||
|
|
@ -40,6 +41,7 @@ export default function Home() {
|
||||||
<CultureBgPage />
|
<CultureBgPage />
|
||||||
<Integrated />
|
<Integrated />
|
||||||
</div>
|
</div>
|
||||||
|
<Footer />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue