Skip to content

Commit

Permalink
Merge pull request #411 from HarperDB/akers/STUDIO-52
Browse files Browse the repository at this point in the history
Added Links for "Deploy Anywhere" SubItems
  • Loading branch information
BboyAkers authored Nov 12, 2024
2 parents 3173c7d + d87f1c9 commit 9d36663
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions src/assets/styles/pages/_auth.scss
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
font-size: $font-size-medium;
border: 2px solid $color-lightblue;
border-radius: 5px;
text-decoration: none;
}
}
}
Expand Down
10 changes: 5 additions & 5 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 } from 'react-router-dom';
import { Route, Routes, Navigate, useNavigate, useLocation, Outlet, useParams, Link } from 'react-router-dom';
import ReactGA from 'react-ga4';

import { useStoreState } from 'pullstate';
Expand Down Expand Up @@ -181,10 +181,10 @@ function App() {
</li>
<li>
<h3 className="item-title">Deploy Anywhere</h3>
<div className='mt-3'>
<span className="deploy-subitem">Docker</span>
<span className="deploy-subitem">npm</span>
<span className="deploy-subitem">all options</span>
<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>
</div>
</li>
</ul>
Expand Down

0 comments on commit 9d36663

Please sign in to comment.