Skip to content

Commit 36f4c5e

Browse files
committed
Refactor LandingPageTemplate to remove Link component for DPM logo
- Removed the Link component wrapping the DPM logo image in the LandingPageTemplate, simplifying the structure while maintaining the image display and styling.
1 parent 5f0cdfc commit 36f4c5e

1 file changed

Lines changed: 7 additions & 9 deletions

File tree

docs/src/components/LandingPageTemplate.tsx

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -262,15 +262,13 @@ export function LandingPageTemplate({
262262
/>
263263
</div>
264264
<div className="flex items-center justify-center">
265-
<Link href="https://dpm.lol" target="_blank">
266-
<Image
267-
src="/logos/dpm.webp"
268-
alt="DPM.lol"
269-
width={120}
270-
height={40}
271-
className="opacity-40 hover:opacity-70 dark:opacity-60 dark:hover:opacity-100 transition-opacity grayscale invert dark:invert-0"
272-
/>
273-
</Link>
265+
<Image
266+
src="/logos/dpm.webp"
267+
alt="DPM.lol"
268+
width={120}
269+
height={40}
270+
className="opacity-40 hover:opacity-70 dark:opacity-60 dark:hover:opacity-100 transition-opacity grayscale invert dark:invert-0"
271+
/>
274272
</div>
275273
</div>
276274
</div>

0 commit comments

Comments
 (0)