Skip to content

Instantly share code, notes, and snippets.

@dcortesnet
Last active February 14, 2023 13:00
Show Gist options
  • Select an option

  • Save dcortesnet/bf155014bca42b7d6596ca510c0a6488 to your computer and use it in GitHub Desktop.

Select an option

Save dcortesnet/bf155014bca42b7d6596ca510c0a6488 to your computer and use it in GitHub Desktop.
Nextjs simple banner
import Image from "next/image";
export const Banner: React.FC<{ img: string }> = ({ img }) => {
return (
<section
style={{
width: "100%",
height: "100%",
}}
>
<Image
alt="banner werenting"
width="100"
height="100"
src={img}
layout="responsive"
objectFit="contain"
></Image>
</section>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment