import Image from "next/image"; import Link from "next/link"; import HoarderLogo from "@/components/HoarderLogo"; import { buttonVariants } from "@/components/ui/button"; import { cn } from "@/lib/utils"; import screenshot from "@/public/screenshot.png"; import { ExternalLink, Github } from "lucide-react"; const GITHUB_LINK = "https://github.com/MohamedBassem/hoarder-app"; const DOCS_LINK = "https://docs.hoarder.app"; const DEMO_LINK = "https://try.hoarder.app"; function NavBar() { return (
Docs Github
); } function Hero() { return (

The{" "} Bookmark Everything {" "} App

Quickly save links, notes, and images and hoarder will automatically tag them for you using AI for faster retrieval. Built for the data hoarders out there!

Open source, and self hostable!

Demo Github
); } function Screenshots() { return (
screenshot
); } export default function LandingPage() { return (
); }