started working on new title page: added pictures and some text

This commit is contained in:
Knee Cola
2025-12-24 18:16:06 +01:00
parent 29709e8048
commit 5da00abd4d
5 changed files with 52 additions and 28 deletions

View File

@@ -0,0 +1,6 @@
import React from "react";
export const MultiParagraphText: React.FC<{ text: string }> = ({ text }) =>
text.split("\n").map((line, index) => (
<p key={index} className="p mt-[1em] max-w-[38em] mx-auto text-justify">{line}</p>));