Skip to content

Commit

Permalink
Fix: links
Browse files Browse the repository at this point in the history
  • Loading branch information
ajstrongdev committed Sep 13, 2024
1 parent 513b31b commit 044b429
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/content.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const contentData = [
"Rhino Linux comes preinstalled with its own in-house desktop experience, Unicorn, a custom-built XFCE desktop combining the best of traditional and modern takes on the desktop. Unicorn is fast and elegant, perfectly adapted for your needs.",
imgSrc: "img/home/image.png",
buttonText: "Learn more",
buttonLink: "https://wiki.rhinolinux.org/user/unicorn",
buttonLink: "/unicorn/",
},
{
title: "Perfect for developers",
Expand Down
2 changes: 1 addition & 1 deletion src/components/quote.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function Quote() {
{quoteText.map((item, index) => (
<blockquote key={index} className="text-2xl text-white text-center w-full p-8 md:p-16 lg:p-24">
<p className="italic">"{item.quote}"</p>
<p className="text-white">- {item.author}, <a href={item.link} className="text-rhino-purple">{item.source}</a></p>
<p className="text-white">- {item.author}, <a href={item.link} target="_blank" className="text-rhino-purple">{item.source}</a></p>
</blockquote>
))}
</div>
Expand Down

0 comments on commit 044b429

Please sign in to comment.