diff --git a/components/footer/footerData.ts b/components/footer/footerData.ts
index 2677f0b..45d00a0 100644
--- a/components/footer/footerData.ts
+++ b/components/footer/footerData.ts
@@ -1,4 +1,4 @@
-import { FaGithub, FaLinkedin } from "react-icons/fa"
+import { FaGithub, FaLinkedin, FaDownload } from "react-icons/fa"
import { MdOutlineWebAsset } from "react-icons/md"
import { SiKofi } from "react-icons/si"
@@ -28,6 +28,11 @@ const contactLinks: ContactLink[] = [
title: "Rafa Canosa Github",
icon: FaGithub,
},
+ {
+ href: "https://www.npmjs.com/package/@f1api/sdk",
+ title: "Download the SDK from NPM",
+ icon: FaDownload,
+ },
{
href: "https://ninjapath.vercel.app/portfolio",
title: "Rafa Canosa Portfolio",
diff --git a/components/header/DesktopHeader.tsx b/components/header/DesktopHeader.tsx
index 6041139..39d0be9 100644
--- a/components/header/DesktopHeader.tsx
+++ b/components/header/DesktopHeader.tsx
@@ -1,6 +1,6 @@
"use client"
-import { Github } from "lucide-react"
+import { Download, Github } from "lucide-react"
import { Button, buttonVariants } from "@/components/ui/button"
import {
CommandDialog,
@@ -80,10 +80,20 @@ export default function DesktopHeader() {
href={"https://github.com/rafacv23/f1-api"}
target="_blank"
rel="noreferrer"
+ title="View the source code on GitHub"
className={buttonVariants({ variant: "outline" })}
>
+
+
+
)
}
diff --git a/components/header/headerData.ts b/components/header/headerData.ts
index 284eea9..d03838a 100644
--- a/components/header/headerData.ts
+++ b/components/header/headerData.ts
@@ -1,4 +1,13 @@
-import { Braces, CircleHelp, Laptop, Moon, StickyNote, Sun } from "lucide-react"
+import {
+ Braces,
+ CircleHelp,
+ Download,
+ Github,
+ Laptop,
+ Moon,
+ StickyNote,
+ Sun,
+} from "lucide-react"
import React from "react"
type Button = {
@@ -44,6 +53,21 @@ const searchOptions: SearchOption[] = [
{ label: "Circuits", href: "/docs/circuits", icon: Braces },
],
},
+ {
+ group: "Resources",
+ links: [
+ {
+ label: "GitHub",
+ href: "https://github.com/rafacv23/f1-api",
+ icon: Github,
+ },
+ {
+ label: "NPM",
+ href: "https://www.npmjs.com/package/@f1api/sdk",
+ icon: Download,
+ },
+ ],
+ },
{
group: "About",
links: [