We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5dfe69d commit 0f8a32dCopy full SHA for 0f8a32d
components/Molecules/WaveSection/WaveSection.tsx
@@ -30,9 +30,9 @@ export default function WaveSection({ children }: WaveSpacerProps) {
30
31
const img =
32
colorScheme === "dark" ? (
33
- <Image src={wavesDark} alt="Background" layout="fill" objectFit="cover" />
+ <Image priority src={wavesDark} alt="Background" layout="fill" objectFit="cover" />
34
) : (
35
- <Image src={wavesLight} alt="Background" layout="fill" objectFit="cover" />
+ <Image priority src={wavesLight} alt="Background" layout="fill" objectFit="cover" />
36
);
37
38
return (
0 commit comments