Ligonier Code Challenge.

This commit is contained in:
bnilsen 2026-05-07 15:36:37 -04:00
commit 86fa02eec9
21 changed files with 4912 additions and 0 deletions

15
app/ligonier/footer.tsx Normal file
View file

@ -0,0 +1,15 @@
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>
);
}