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

Hoarder

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!

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