fenghuo/apps/web/components/content/jcdt/page.tsx

21 lines
422 B
TypeScript
Raw Normal View History

2025-06-09 21:40:05 +08:00
const JcdtContainer = () => {
return (
<>
<div
className="bg-[#0082e9] w-[1514px] h-[60px] ml-1 "
style={{
clipPath: 'polygon(0 0, calc(100% - 150px)1%, calc(100% - 30px) 100%, 0 100%)',
}}
>
{/* 内容 */}
</div>
<div
className="bg-cover bg-center w-[1920px] h-[7250px] ml-1"
style={{ backgroundImage: 'url(/jcdt.png)' }}
></div>
</>
);
2025-06-09 21:40:05 +08:00
};
export default JcdtContainer;