Files
lixiyu-net/components/utils/PageCover.tsx
2023-12-25 17:21:39 +08:00

13 lines
292 B
TypeScript

export const PageCover = (props: { coverURL: string }) => {
return (
<div
className="my-5 mt-0 flex w-full justify-center rounded-xl"
style={{
aspectRatio: "4/1",
background: `url(${props.coverURL})`,
backgroundSize: "cover",
}}
/>
);
};