migrate from fontawesome to lucide-react (i hate fontawesome now), add manifesto from old website (w/ edits), improve function names

This commit is contained in:
Aidan 2025-01-28 23:59:18 -05:00
parent ab191ac1fc
commit f45a452225
8 changed files with 105 additions and 25 deletions

15
app/manifesto/page.tsx Normal file
View file

@ -0,0 +1,15 @@
import Header from '../components/Header'
import ManifestoPg from '../components/pages/Manifesto'
import Footer from '../components/Footer'
export default function Manifesto() {
return (
<div className="min-h-screen flex flex-col">
<Header />
<main className="flex-grow container mx-auto px-4 py-12">
<ManifestoPg />
</main>
<Footer />
</div>
)
}