remove font-mono class from body

This commit is contained in:
Triston Armstrong 2023-12-25 19:50:44 -06:00
parent d59620e25c
commit 13acd7416a

View File

@ -8,7 +8,7 @@ export default function Landing({ jobs, skills, projects }) {
return ( return (
<div> <div>
<Head> <Head>
<body className="bg-gradient-to-b from-gray-300 to-blue-200 container max-w-xl mx-auto text-gray-800 py-24 px-8 w-full font-mono" /> <body className="bg-gradient-to-b from-gray-300 to-blue-200 container max-w-xl mx-auto text-gray-800 py-24 px-8 w-full " />
</Head> </Head>
<main className="flex gap-6 flex-col"> <main className="flex gap-6 flex-col">
@ -52,7 +52,7 @@ export default function Landing({ jobs, skills, projects }) {
<section> <section>
<h2 className="text-1xl text-gray-900 font-bold uppercase">Notes</h2> <h2 className="text-1xl text-gray-900 font-bold uppercase">Notes</h2>
<p>An endless trail of links to my personal notes</p> <p>An endless trail of links to my personal notes</p>
<a href="/note">note</a> <a href="/notes">Go To Notes {"->"}</a>
</section> </section>
</main> </main>
</div> </div>