-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
replace the accidentally deleted component oops
- Loading branch information
1 parent
fcd92ec
commit 35d8958
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import React from 'react'; | ||
|
||
const quoteText = [ | ||
{ | ||
quote: "Rhino Linux's latest release makes it the Swiss Army knife of Linux distributions.", | ||
author: "Jack Wallen", | ||
link: "https://www.zdnet.com/article/rhino-linux-latest-release-makes-it-the-swiss-army-knife-of-linux-distributions/", | ||
source: "ZDNET" | ||
}, | ||
]; | ||
|
||
function Quote() { | ||
return ( | ||
<div className="md:w-[85%] m-auto md:grid md:grid-cols-1 md:gap-4"> | ||
{quoteText.map((item, index) => ( | ||
<blockquote key={index} className="text-2xl italic text-white text-center w-full p-8 md:p-16 lg:p-24"> | ||
<p>"{item.quote}"</p> | ||
<p className="text-white">- {item.author}, <a href={item.link} className="text-rhino-purple">{item.source}</a></p> | ||
</blockquote> | ||
))} | ||
</div> | ||
); | ||
} | ||
|
||
export default Quote; |