We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bdfffe commit 7587da0Copy full SHA for 7587da0
2 files changed
src/components/ui/blog-entry.tsx
@@ -26,6 +26,7 @@ export default function BlogEntry({
26
src={prevImgSrc}
27
fill
28
alt={alt}
29
+ priority
30
className="w-full h-full rounded-lg object-cover"
31
/>
32
</AspectRatio>
src/components/ui/project-button.tsx
@@ -27,8 +27,6 @@ export default function ProjectButton({
const { resolvedTheme } = useTheme();
const usingLight: boolean = resolvedTheme == "light" || resolvedTheme == "latte"
- console.log(resolvedTheme == "light")
-
return (
33
<a
34
href={href}
@@ -44,6 +42,7 @@ export default function ProjectButton({
44
42
src={imgSrc}
45
43
alt={`An icon for Jacob Moy's project, ${title}.`}
46
47
className={cn(
48
"rounded-full",
49
(!usingLight && "brightness-65")
0 commit comments