Rabbits and a very bad attempt at optimization.
This commit is contained in:
parent
74a5af4f66
commit
6ac72b3915
8 changed files with 15 additions and 11 deletions
BIN
bun.lockb
BIN
bun.lockb
Binary file not shown.
|
@ -6,6 +6,7 @@
|
||||||
"@testing-library/jest-dom": "^5.17.0",
|
"@testing-library/jest-dom": "^5.17.0",
|
||||||
"@testing-library/react": "^13.4.0",
|
"@testing-library/react": "^13.4.0",
|
||||||
"@testing-library/user-event": "^13.5.0",
|
"@testing-library/user-event": "^13.5.0",
|
||||||
|
"caniuse-lite": "^1.0.30001699",
|
||||||
"react": "^18.2.0",
|
"react": "^18.2.0",
|
||||||
"react-dom": "^18.2.0",
|
"react-dom": "^18.2.0",
|
||||||
"react-player": "^2.16.0",
|
"react-player": "^2.16.0",
|
||||||
|
|
|
@ -48,6 +48,11 @@
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.grayout {
|
||||||
|
opacity: 0.6; /* Real browsers */
|
||||||
|
filter: alpha(opacity = 60); /* MSIE */
|
||||||
|
}
|
||||||
|
|
||||||
.PubP {
|
.PubP {
|
||||||
font-size: larger;
|
font-size: larger;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
|
|
@ -1,6 +1,3 @@
|
||||||
import BottomBar from "./BottomBar";
|
|
||||||
import TopBar from "./TopBar";
|
|
||||||
|
|
||||||
const AboutPage = () => {
|
const AboutPage = () => {
|
||||||
return(
|
return(
|
||||||
<div className="flex justify-center items-center w-screen h-screen text-xl text-secondary MainBG">
|
<div className="flex justify-center items-center w-screen h-screen text-xl text-secondary MainBG">
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
import PageLoadTime from "./PageLoadTime";
|
import PageLoadTime from "./PageLoadTime";
|
||||||
|
import React from "react";
|
||||||
|
|
||||||
const BottomBar = () => {
|
const BottomBar = () => {
|
||||||
return (
|
return (
|
||||||
<div className="fixed bottom-0 left-0 h-8 w-screen flex flex-row backdrop-brightness-50 text-secondary justify-center items-center">
|
<div className="fixed bottom-0 left-0 h-8 w-screen flex flex-row backdrop-brightness-50 text-secondary justify-center items-center">
|
||||||
<div className="fixed right-5">
|
<div className="fixed right-5">
|
||||||
<p className="text-sm">Powered by React.</p>
|
<p className="text-sm">Powered by Rabbits.</p>
|
||||||
</div>
|
</div>
|
||||||
<div className="fixed flex justify-center">
|
<div className="fixed flex justify-center">
|
||||||
<p className="text-sm">© LibreBun 2023-2025</p>
|
<p className="text-sm">© LibreBun 2023-2025</p>
|
||||||
|
@ -16,4 +17,4 @@ const BottomBar = () => {
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export default BottomBar;
|
export default React.memo(BottomBar);
|
|
@ -1,4 +1,5 @@
|
||||||
import { useEffect, useState } from 'react';
|
import { useEffect, useState } from 'react';
|
||||||
|
import React from 'react';
|
||||||
|
|
||||||
function Home() {
|
function Home() {
|
||||||
const [Versions, setVersions] = useState('');
|
const [Versions, setVersions] = useState('');
|
||||||
|
@ -59,4 +60,4 @@ function Home() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default Home;
|
export default React.memo(Home);
|
|
@ -1,5 +1,4 @@
|
||||||
import BottomBar from "./BottomBar";
|
import React from "react";
|
||||||
import TopBar from "./TopBar";
|
|
||||||
|
|
||||||
const StreamPage = () => {
|
const StreamPage = () => {
|
||||||
return(
|
return(
|
||||||
|
@ -19,9 +18,9 @@ const StreamPage = () => {
|
||||||
height="100%" width="30%">
|
height="100%" width="30%">
|
||||||
</iframe>
|
</iframe>
|
||||||
</div>
|
</div>
|
||||||
<a href="https://cast.librebun.com/" className="my-5">Join me on my actual Owncast site!</a>
|
<p className="mt-2">Join me on my actual</p><a href="https://cast.librebun.com/" className="font-bold text-slate-50">Owncast site!</a>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export default StreamPage;
|
export default React.memo(StreamPage);
|
|
@ -27,4 +27,4 @@ const TopBar = () => {
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export default TopBar;
|
export default React.memo(TopBar);
|
Loading…
Add table
Reference in a new issue