Skip to content

Commit b0038d2

Browse files
committed
landing: add not by AI badge
1 parent b559c0f commit b0038d2

4 files changed

Lines changed: 39 additions & 0 deletions

File tree

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44

55
A powerful, multi-protocol file server with Role-Based Access Control (RBAC). \
66
This project was made for Hack Club [Flavortown](https://flavortown.hackclub.com)!
7+
8+
<a href="https://notbyai.fyi" target="_blank">
9+
<img src="landing/public/not-by-ai.svg" alt="Developed by a human, not by AI!">
10+
</a>
11+
712
## Highlights
813
FolderHarbor is a powerful file server, designed in a multi-component "stack" style. \
914
Some cool things it features:

landing/app/(ui)/ui.module.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import Link from "next/link";
44
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
55
import { faGlobe, faPlay, faServer, faTerminal } from "@fortawesome/free-solid-svg-icons";
66
import { faGithub } from "@fortawesome/free-brands-svg-icons";
7+
import notByAI from "@/public/not-by-ai.svg";
78

89
export function Header() {
910
return (
@@ -22,6 +23,7 @@ export function Footer() {
2223
return (
2324
<footer className="flex gap-4 bg-violet-600/30 p-3 md:px-8 justify-between items-center align-middle rounded-xl m-4">
2425
<a href="https://github.com/aelithron/folderharbor" target="_blank" className="hover:text-sky-500 text-slate-500 text-lg flex gap-1 items-center"><FontAwesomeIcon icon={faGithub} /> <p className="underline">Source</p></a>
26+
<a href="https://notbyai.fyi" target="_blank"><Image src={notByAI} alt="Developed by a human, not by AI!" /></a>
2527
</footer>
2628
);
2729
}

landing/app/demo/page.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ export default function Page() {
7878
<li>Transfers are slow: Check your Internet connection! You may also want to try with FTP instead of WebDAV, as it is better for transfer speeds (especially for bigger files).</li>
7979
<li>Can&apos;t login to WebDAV/FTP: Make sure your username and password are the same as the ones used on the web panel when you registered! You can also use token-based login by copying your token from the web home page.</li>
8080
<li>CLI installation failing: If you have any reason why you can&apos;t get the CLI installed, try just running it in place. Open a terminal in your Downloads folder and type <code>./folderharbor-cli-[version]-[os]-[arch] --help</code> (add <code>.exe</code> to the end if on Windows). If that works, please just use that instead!</li>
81+
<li>WebDAV opening in the browser: Change the `https://` URL start to `webdavs://` or `davs://`. I&apos;ve mainly noticed this change needed in Dolphin (in Linux distros using KDE).</li>
8182
</ul>
8283
<p>You can also watch the demo videos to see the intended behavior, if you would like!</p>
8384
</div>

0 commit comments

Comments
 (0)