15 lines
590 B
TypeScript
15 lines
590 B
TypeScript
export function Footer() {
|
|
return (
|
|
<div className="flex justify-center">
|
|
<div className="ml-10 mr-10 mb-5 md:ml-10 md:mr-10 flex flex-col max-w-[600px]">
|
|
<strong className="font-libre">2 Corinthians 3:18</strong>
|
|
<p className="font-libre">
|
|
And we all, with unveiled face, beholding the glory of the Lord, are being transformed into the same image from one degree of glory to another. For this comes from the Lord who is the Spirit.
|
|
</p>
|
|
<strong className="font-libre mt-2 w-full text-center">
|
|
<em>Soli Deo Gloria</em>
|
|
</strong>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|