21 lines
528 B
TypeScript
21 lines
528 B
TypeScript
|
|
|
|
import { CarouselDemo } from "@/components/Carousel";
|
|
import {FireNewsList} from "./FireNewsList";
|
|
|
|
|
|
export function FhywPage() {
|
|
return(
|
|
<div className="relative w-full max-w-4xl mx-auto overflow-hidden aspect-square">
|
|
{/* 轮播背景图 */}
|
|
<div className="absolute inset-0 z-0">
|
|
<CarouselDemo />
|
|
</div>
|
|
|
|
{/* 固定的烽火要闻 */}
|
|
<div className="absolute top-0 right-0 w-1/3 h-full p-1">
|
|
<FireNewsList />
|
|
</div>
|
|
</div>
|
|
)
|
|
} |