Skip to content

Commit

Permalink
replacing link component with a tag for external links
Browse files Browse the repository at this point in the history
  • Loading branch information
BboyAkers committed Nov 12, 2024
1 parent 9d36663 commit c82bc75
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/layouts/App.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useEffect, useState, lazy, Suspense } from 'react';

import { Route, Routes, Navigate, useNavigate, useLocation, Outlet, useParams, Link } from 'react-router-dom';
import { Route, Routes, Navigate, useNavigate, useLocation, Outlet, useParams } from 'react-router-dom';
import ReactGA from 'react-ga4';

import { useStoreState } from 'pullstate';
Expand Down Expand Up @@ -182,9 +182,9 @@ function App() {
<li>
<h3 className="item-title">Deploy Anywhere</h3>
<div className="mt-3">
<Link to={{ pathname: "https://hub.docker.com/r/harperdb/harperdb" }} target="_blank" rel="noreferrer" className="deploy-subitem">Docker</Link>
<Link to={{ pathname: "https://www.npmjs.com/package/harperdb" }} target="_blank" rel="noreferrer" className="deploy-subitem">npm</Link>
<Link to={{ pathname: "https://docs.harperdb.io/docs/deployments/install-harperdb" }} target="_blank" rel="noreferrer" className="deploy-subitem">all options</Link>
<a href="https://hub.docker.com/r/harperdb/harperdb" target="_blank" rel="noreferrer" className="deploy-subitem">Docker</a>
<a href="https://www.npmjs.com/package/harperdb" target="_blank" rel="noreferrer" className="deploy-subitem">npm</a>
<a href="https://docs.harperdb.io/docs/deployments/install-harperdb" target="_blank" rel="noreferrer" className="deploy-subitem">all options</a>
</div>
</li>
</ul>
Expand Down

0 comments on commit c82bc75

Please sign in to comment.