From c293c42906a2d686617b6d5e882baa64b82757d8 Mon Sep 17 00:00:00 2001 From: MacRimi <123239993+MacRimi@users.noreply.github.com> Date: Wed, 5 Mar 2025 12:58:22 +0100 Subject: [PATCH] Update resources.tsx --- web/components/resources.tsx | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/web/components/resources.tsx b/web/components/resources.tsx index 09b7566..21c7560 100644 --- a/web/components/resources.tsx +++ b/web/components/resources.tsx @@ -7,43 +7,42 @@ const resources = [ { icon: , title: "Documentation", - description: System description and user guides, + description: "System description and user guides", link: "/docs/introduction", }, { icon: , title: "Changelog", - description: Information on the latest updates, + description: "Information on the latest updates", link: "/changelog", }, { icon: , title: "Guides", - description: Step-by-step tutorials and guides for common tasks, + description: "Step-by-step tutorials and guides for common tasks", link: "/guides", }, { icon: , title: "GitHub Repository", - description: Explore the source code., + description: "Explore the source code.", link: "https://github.com/MacRimi/ProxMenux", }, ] - export default function Resources() { return ( {resources.map((resource, index) => ( - - + + {resource.icon} {resource.title} - {resource.description} + {resource.description} ))} @@ -52,4 +51,3 @@ export default function Resources() { ) } -
{resource.description}