diff --git a/src/components/navigation.tsx b/src/components/navigation.tsx
index aeba3ae..c532e02 100644
--- a/src/components/navigation.tsx
+++ b/src/components/navigation.tsx
@@ -109,20 +109,20 @@ export function Navigation() {
-
Support us on Patreon and get exclusive rewards and keep the
project alive.
-
-
+
Ko-fi is a way to support us with a one-time donation and help
us keep the project alive.
-
+
@@ -152,6 +152,30 @@ export function Navigation() {
const ListItem = React.forwardRef<
React.ElementRef<"a">,
React.ComponentPropsWithoutRef<"a">
+>(({ className, title, children, ...props }, ref) => {
+ return (
+
+
+
+ {title}
+
+ {children}
+
+
+
+
+ );
+});
+const ListItem2 = React.forwardRef<
+ React.ElementRef<"a">,
+ React.ComponentPropsWithoutRef<"a">
>(({ className, title, children, ...props }, ref) => {
return (
@@ -175,3 +199,4 @@ const ListItem = React.forwardRef<
);
});
ListItem.displayName = "ListItem";
+ListItem.displayName = "ListItem2";