Une collection organisée de snippets de code pour accélérer votre développement. Parcourez, recherchez et copiez en un clic.
<Image src={profilePic} width={500} height={500} alt="..." />
<Image src={profilePic} alt="..." fill style={{objectFit:"cover"}} />
import { Inter } from 'next/font/google';
const inter = Inter({ subsets: ['latin'] });
<main className={inter.className}>...</main>
<Script src="..." strategy="lazyOnload" />
import Image from 'next/image';
import profilePic from '../public/me.png';
const MyImage = () => <Image src={profilePic} alt="Picture of the author" />;
import Script from 'next/script';
<Script src="https://www.google-analytics.com/analytics.js" />