diff --git a/src/components/navbar.jsx b/src/components/navbar.jsx index 944a705..ef08a98 100644 --- a/src/components/navbar.jsx +++ b/src/components/navbar.jsx @@ -30,8 +30,8 @@ const baritems = [ goto: "News" }, { - link: "https://docs.rhinolinux.org", - goto: "Documentation" + link: "https://wiki.rhinolinux.org", + goto: "Wiki" }, { link: "/community/", diff --git a/src/components/unicorn/hero.jsx b/src/components/unicorn/hero.jsx new file mode 100644 index 0000000..f889a62 --- /dev/null +++ b/src/components/unicorn/hero.jsx @@ -0,0 +1,18 @@ +import React from "react"; + +function Hero() { + return( +
+
+
+

A desktop perfect for the power user.

+
+
+ +
+
+
+ ) +} + +export default Hero; diff --git a/src/pages/news.jsx b/src/pages/news.jsx deleted file mode 100644 index 38eaa60..0000000 --- a/src/pages/news.jsx +++ /dev/null @@ -1,16 +0,0 @@ -import React from "react"; -import Menu from "../components/navbar"; -import Hero from '../components/news/hero'; -import Posts from "../components/news/posts"; -import Footer from "../components/footer"; - -export default function Home() { - return ( -
- - - -
- ); -} diff --git a/src/pages/unicorn.jsx b/src/pages/unicorn.jsx new file mode 100644 index 0000000..57b32db --- /dev/null +++ b/src/pages/unicorn.jsx @@ -0,0 +1,11 @@ +import React from "react"; +import Menu from "../components/navbar"; +import Hero from "../components/unicorn/hero"; + +export default function Home() { + return( +
+ + + ); +}; \ No newline at end of file