import Link from "next/link" import Image from "next/image" import { ArrowUpRight } from "lucide-react" import { ScrollRevealCard } from "@/components/scroll-reveal-card" const projects = [ { title: "Böhler re:search", description: "Digital edition of the Munich art dealer Julius Böhler's object card system, photo folders and customer index (1903–1948). Research data on traded artworks, transactions and actors.", href: "https://boehler.zikg.eu/", icon: "/assets/icons/boehler-research.png", }, { title: "Objektsprache und Ästhetik", description: "Shell collections at Leopoldina, Goldfuß-Museum Bonn, and Central Institute for Natural Collections MLU. Historical object references and synonym networks for conchylia.", href: "https://konchylien.leopoldina.org/sammlungen", icon: "/assets/logos/lzfw_logo.png", }, { title: "SCS Manager", description: "Semantic Co-Working Space for academic university collections. Model, transform, analyse and publish data with JupyterLab, OpenRefine, WissKI and more.", href: "https://manager.scs.sammlungen.io/", icon: "/assets/icons/scs-manager.png", }, { title: "WissKI", description: "Semantic data management system for GLAM institutions. Virtual research environment extending Drupal with CIDOC CRM, Pathbuilder and linked open data.", href: "https://wiss-ki.eu/", icon: "/assets/icons/wisski.svg", }, ] export function HomeProjects() { return (

Projects

Data- and information-focused websites and applications.

{projects.map((project) => (

{project.title}

{project.description}

Visit project
))}
) }