Skip to content

Commit

Permalink
Upd: website
Browse files Browse the repository at this point in the history
  • Loading branch information
ajstrongdev committed Sep 4, 2024
1 parent 61876ba commit 5151cad
Show file tree
Hide file tree
Showing 16 changed files with 55 additions and 340 deletions.
Binary file added public/img/blobs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
46 changes: 0 additions & 46 deletions src/components/footer.jsx

This file was deleted.

29 changes: 29 additions & 0 deletions src/components/hero.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import React from 'react';
import NavBar from './navbar';

function Hero() {
return(
<section className="bg-hero-pattern bg-no-repeat bg-center-x bg-center-y bg-cover">
<div className="bg-overlay w-full h-auto">
<NavBar />
<div class="py-8 px-4 mx-auto max-w-screen-xl text-center lg:py-16 lg:px-12">
<h1 class="mb-4 text-4xl tracking-tight leading-none text-white font-bold md:text-5xl lg:text-6xl">Ubuntu based, rolling release.</h1>
<p class="mb-8 text-lg font-normal lg:text-xl sm:px-16 xl:px-48 text-white">Rhino Linux is a rolling release Ubuntu-based distribution with Pacstall & XFCE at its core.
</p>
<div class="flex flex-col mb-8 lg:mb-16 space-y-4 sm:flex-row sm:justify-center sm:space-y-0 sm:space-x-4">
<a href="download" class="inline-flex justify-center items-center py-3 px-5 text-base text-center rounded-lg bg-rhino-purple hover:scale-105 text-white transition-all text-lg">
Download
</a>

<a href="#learn" class="inline-flex justify-center items-center py-3 px-5 text-base text-center text-white transition-all text-lg">
Learn more
<svg class="ml-2 -mr-1 w-5 h-5" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M10.293 3.293a1 1 0 011.414 0l6 6a1 1 0 010 1.414l-6 6a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-4.293-4.293a1 1 0 010-1.414z" clip-rule="evenodd"></path></svg>
</a>
</div>
</div>
</div>
</section>
);
}

export default Hero;
36 changes: 0 additions & 36 deletions src/components/home/desktop.jsx

This file was deleted.

44 changes: 0 additions & 44 deletions src/components/home/developers.jsx

This file was deleted.

32 changes: 0 additions & 32 deletions src/components/home/hero.jsx

This file was deleted.

27 changes: 0 additions & 27 deletions src/components/home/latest.jsx

This file was deleted.

44 changes: 0 additions & 44 deletions src/components/home/packages.jsx

This file was deleted.

11 changes: 5 additions & 6 deletions src/components/navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ const baritems = [
function NavBar() {
return (
<div>
<nav className="bg-site-300 w-[100%] flex items-center justify-between">
<nav className=" w-[100%] m-auto flex items-center justify-between">
<div className="px-2">
<a href="../">
<img src="/img/logo.png" alt="" className="lg:w-[4%] md:w-[10%] w-[20%] rounded-full" />
<img src="/img/logo.png" alt="" className="lg:w-[4%] md:w-[10%] w-[20%]" />
</a>
</div>
<div
Expand All @@ -55,10 +55,9 @@ function NavBar() {
<h1 className="text-3xl text-white"></h1>
</div>
</nav>
<div className="bg-site-300 hidden transition-all w-[100%] p-2" id="mega-menu">
<hr className="bg-off-white mb-4" />
<div className=" hidden transition-all w-[100%] p-2" id="mega-menu">
<div className="w-[100%] m-auto">
<div className="text-2xl">
<div className="text-2xl bg-site-300 rounded-lg p-8">
{baritems.map((item) => (
<li className="list-none p-4" key={item.link}>
<Link href={item.link}>
Expand All @@ -68,7 +67,7 @@ function NavBar() {
))}
</div>
</div>
<hr className="bg-off-white mb-2" />

</div>
</div>
);
Expand Down
18 changes: 0 additions & 18 deletions src/components/news/hero.jsx

This file was deleted.

43 changes: 0 additions & 43 deletions src/components/news/posts.jsx

This file was deleted.

15 changes: 15 additions & 0 deletions src/components/unicorn.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import React from "react";

function Unicorn() {
<div className="w-full p-8 md:p-16 lg:p-24">
<div className="grid grid-cols-2 gap-4">
<div>
<h1 className="text-xl text-rhino-purple">

</h1>
</div>
</div>
</div>
}

export default Unicorn;
Loading

0 comments on commit 5151cad

Please sign in to comment.