started working on new title page: added pictures and some text
This commit is contained in:
6
app/ui/MultiParagrpahText.tsx
Normal file
6
app/ui/MultiParagrpahText.tsx
Normal 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>));
|
||||
Reference in New Issue
Block a user