Move package "de.grimsi.gameyfin" to "org.gameyfin"

This commit is contained in:
grimsi
2025-06-14 19:23:12 +02:00
parent be0ba28c54
commit d3d46b6b01
328 changed files with 710 additions and 678 deletions
@@ -0,0 +1,10 @@
import {Divider} from "@heroui/react";
export default function Section({title}: { title: string }) {
return (
<>
<h2 className="text-xl font-bold mt-8 mb-1">{title}</h2>
<Divider className="mb-4"/>
</>
);
}