Skip to content

Commit

Permalink
Put back noreferrer
Browse files Browse the repository at this point in the history
  • Loading branch information
Zahnentferner committed Jul 29, 2024
1 parent 14193b2 commit beef422
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/elements/cards/DappCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ interface Props {

const DappCard = (props: Props): JSX.Element => {
return (
<a href={props.href} target="_blank">
<a href={props.href} target="_blank" rel="noreferrer">
<div className="card rounded-lg overflow-hidden shadow-lg border z-30 lg:m-10 m-5 lg:w-1/3 sm:w-96">
<div className="px-6 py-4">
<h3 className="cardTitle font-bold whitespace-normal text-md lg:text-xl mb-2 py-2 lg:whitespace-pre">{props.cardTitle}</h3>
Expand Down
10 changes: 5 additions & 5 deletions src/components/pages/header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ const Header: React.FC = () => {
<li><a id="homeLink" className="active px-4 md:py-2 font-semibold navColor cursor-pointer" onClick={() => handleActive('homeLink', '#')}>HOME</a></li>
<li><a id="appsLink" className="px-4 md:py-2 font-semibold navColor cursor-pointer" onClick={() => handleActive('appsLink', 'djed_apps')}>DJED</a></li>
<li><a id="contributorsLink" className="px-4 md:py-2 font-semibold navColor cursor-pointer" onClick={() => handleActive('contributorsLink', 'contributors')}>CONTRIBUTORS</a></li>
<li><a href="https://docs.stability.nexus/about-us/the-djed-alliance" target="_blank" className="px-4 md:py-2 font-semibold navColor">DOCS</a></li>
<li><a href="https://medium.com/djed-alliance" target="_blank" className="px-4 md:py-2 font-semibold navColor">BLOG</a></li>
<li><a href="https://docs.stability.nexus/about-us/the-djed-alliance" target="_blank" rel="noreferrer" className="px-4 md:py-2 font-semibold navColor">DOCS</a></li>
<li><a href="https://medium.com/djed-alliance" target="_blank" rel="noreferrer" className="px-4 md:py-2 font-semibold navColor">BLOG</a></li>
<ul className="flex justify-center">
<li><a href="https://discord.gg/YzDKeEfWtS" target="_blank"><img className="socialImage mx-2 cursor-pointer" src={Discord} /></a></li>
<li><a href="https://github.com/DjedAlliance" target="_blank"><img className="socialImage mx-2 cursor-pointer" src={GitHub} /></a></li>
<li><a href="https://twitter.com/DjedAlliance" target="_blank"><img className="socialImage mx-2 cursor-pointer" src={Twitter} /></a></li>
<li><a href="https://discord.gg/YzDKeEfWtS" target="_blank" rel="noreferrer"><img className="socialImage mx-2 cursor-pointer" src={Discord} /></a></li>
<li><a href="https://github.com/DjedAlliance" target="_blank" rel="noreferrer"><img className="socialImage mx-2 cursor-pointer" src={GitHub} /></a></li>
<li><a href="https://twitter.com/DjedAlliance" target="_blank" rel="noreferrer"><img className="socialImage mx-2 cursor-pointer" src={Twitter} /></a></li>
</ul>
</ul>
</div>
Expand Down

1 comment on commit beef422

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Preview ready at https://main.djedone.codepreview.io

Powered by https://codepreview.io community edition.

Please sign in to comment.