diff --git a/public/img/home/laptop.png b/public/img/home/laptop.png deleted file mode 100644 index 43fd9e7..0000000 Binary files a/public/img/home/laptop.png and /dev/null differ diff --git a/src/components/developers.jsx b/src/components/developers.jsx new file mode 100644 index 0000000..26eba0b --- /dev/null +++ b/src/components/developers.jsx @@ -0,0 +1,27 @@ +import React from "react"; + +function Developers() { + return( +
+
+
+

+ Perfect for developers +

+

+ Developers will fall in love with our vast software repositories which are always up-to-date. User-repositories such as Pacstall can help provide development libraries that are critical for your project. With codium preinstalled on your system you can begin doing what you do best, instantly. +

+ + Read the wiki + + +
+
+ Unicorn Desktop with open windows. +
+
+
+ ); +} + +export default Developers; \ No newline at end of file diff --git a/src/components/navbar.jsx b/src/components/navbar.jsx index d4beca5..fe48085 100644 --- a/src/components/navbar.jsx +++ b/src/components/navbar.jsx @@ -26,8 +26,8 @@ const baritems = [ goto: "Download" }, { - link: "/news/", - goto: "News" + link: "https://blog.rhinolinux.org", + goto: "Blog" }, { link: "https://wiki.rhinolinux.org", diff --git a/src/components/quote.jsx b/src/components/quote.jsx new file mode 100644 index 0000000..d567602 --- /dev/null +++ b/src/components/quote.jsx @@ -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 ( +
+ {quoteText.map((item, index) => ( +
+

"{item.quote}"

+

- {item.author}, {item.source}

+
+ ))} +
+ ); +} + +export default Quote; \ No newline at end of file diff --git a/src/components/unicorn.jsx b/src/components/unicorn.jsx index 232a7b3..69cacf1 100644 --- a/src/components/unicorn.jsx +++ b/src/components/unicorn.jsx @@ -1,16 +1,27 @@ import React from "react"; function Unicorn() { -
-
-
-

- Unicorn built-in -

- + return( +
+
+
+

+ Unicorn built-in +

+

+ Rhino Linux comes preinstalled with it's own in-house desktop experience, Unicorn, a custom built XFCE desktop experience combining the best of the traditional and modern takes on the desktop experience. Unicorn is both fast as well as elegant, and perfectly adapted for your needs. +

+ + Learn more + + +
+
+ Unicorn Desktop with open windows. +
-
+ ); } export default Unicorn; \ No newline at end of file diff --git a/src/pages/index.jsx b/src/pages/index.jsx index c0dcb8d..f37959c 100644 --- a/src/pages/index.jsx +++ b/src/pages/index.jsx @@ -1,10 +1,16 @@ import React from "react"; import Hero from "../components/hero"; +import Unicorn from "../components/unicorn"; +import Developers from "../components/developers" +import Quote from "../components/quote"; export default function Home() { return (
+ + +
); }