feat: add images for character section

This commit is contained in:
Kentai Radiquum 2025-07-23 12:56:33 +05:00
parent e63a3126ae
commit 72bad7b8ea
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
13 changed files with 45 additions and 17 deletions

View file

@ -97,7 +97,7 @@ const EmblaCarousel: React.FC<PropType> = (props) => {
<img
className="embla__slide__img embla__parallax__img"
src={index}
alt="Your alt text"
alt=""
/>
</div>
</div>

View file

@ -2,7 +2,7 @@ export const Section = ({
children,
}: Readonly<{ children: React.ReactNode }>) => {
return (
<div className="max-w-[400px] md:max-w-[542px] w-full mx-auto flex flex-col gap-2">
<div className="max-w-[400px] md:max-w-[542px] xl:max-w-[1012px] w-full mx-auto flex flex-col gap-2">
{children}
</div>
);