news/app/components/body/GrassrootsDynamics.tsx

23 lines
570 B
TypeScript
Raw Normal View History

2025-11-18 17:36:30 +08:00
import React from 'react';
import List from '../list/List';
export default function GrassrootsDynamics() {
return (
2025-11-19 08:10:19 +08:00
<div className="flex bg-white rounded-2xl mx-auto w-4/5">
<div className="w-2/5 p-6 flex flex-col items-center justify-center relative">
<div >
2025-11-18 21:01:42 +08:00
<img
src="/images/carousel-1.jpg"
alt="基层动态"
2025-11-19 08:10:19 +08:00
className="w-full h-full "
2025-11-18 21:01:42 +08:00
/>
</div>
</div>
{/* 右边列表 */}
2025-11-19 08:10:19 +08:00
<div className="w-3/5 text-white p-6">
2025-11-18 21:01:42 +08:00
<List />
</div>
</div>
2025-11-18 17:36:30 +08:00
);
}