Skip to content

Commit

Permalink
add notes on nofollow, possible the infinite export links are slowing…
Browse files Browse the repository at this point in the history
… down the google crawler
  • Loading branch information
cohenaj194 committed Sep 24, 2024
1 parent 04d347c commit 4d3dcfa
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions app/routes/queries.item-data.$itemId.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,17 +150,17 @@ const ItemPage = () => {
<CustomButton
link={`https://universalis.app/market/${itemId}`}
buttonText="View on Universalis"
rel="nofollow"
rel="nofollow" // not working need to fix
/>
<CustomButton
link={`https://ffxivteamcraft.com/db/en/item/${itemId}`}
buttonText="View on FFXIV Teamcraft"
rel="nofollow"
rel="nofollow" // not working need to fix
/>
<CustomButton
link={`https://www.garlandtools.org/db/#item/${itemId}`}
buttonText="View on Garland Tools"
rel="nofollow"
rel="nofollow" // not working need to fix
/>
</div>
</Section>
Expand Down
9 changes: 5 additions & 4 deletions app/routes/wow.item-data.$itemId.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -169,19 +169,20 @@ export default function Index() {
<div className="flex flex-col justify-around mx-3 my-6 md:flex-row">
<div className="flex flex-wrap gap-2">
<CustomButton
link={`https://saddlebagexchange.com/wow/export-search?itemId=${listing.itemID}&minPrice=1`}
// link={`https://saddlebagexchange.com/wow/export-search?itemId=${listing.itemID}&minPrice=1`}
link={`https://saddlebagexchange.com/wow/export-search`} // remove custom id as it might be slowing down the crawl
buttonText="Best Place to Sell!"
rel="nofollow"
rel="noopener noreferrer nofollow" // not working need to fix
/>
<CustomButton
link={`https://www.wowhead.com/item=${listing.itemID}`}
buttonText="View on WoWHead"
rel="nofollow"
rel="noopener noreferrer nofollow" // not working need to fix
/>
<CustomButton
link={`${listing.link}`}
buttonText="View on Undermine Exchange"
rel="nofollow"
rel="noopener noreferrer nofollow" // not working need to fix
/>
</div>
</div>
Expand Down

0 comments on commit 4d3dcfa

Please sign in to comment.