Minor changes to main page.

This commit is contained in:
Alexis Werefox 2021-04-27 03:30:21 +00:00
parent 3c56988c65
commit 9a50044b12

View File

@ -10,6 +10,12 @@ export default function Home() {
card_title="Hi! I'm Alexis Werefox!" card_title="Hi! I'm Alexis Werefox!"
> >
<WCard> <WCard>
<div className="p-2 space-y-2">
<div className="rounded-lg ring-2 ring-werefox-grey-lightest dark:ring-werefox-grey-darker bg-werefox-grey-lighter dark:bg-werefox-grey-dark">
<p className="p-2 text-center text-md sm:text-lg text-center text-werefox-blue-dark dark:text-werefox-blue">
<p>Basic Info</p>
</p>
</div>
<div className="grid xl:grid-rows-2 xl:grid-cols-5 sm:grid-rows-3 sm:grid-cols-3 grid-rows-9 grid-cols-1 gap-2"> <div className="grid xl:grid-rows-2 xl:grid-cols-5 sm:grid-rows-3 sm:grid-cols-3 grid-rows-9 grid-cols-1 gap-2">
<IDButton <IDButton
extraClasses="" extraClasses=""
@ -102,27 +108,42 @@ export default function Home() {
url="/identities/fursona" url="/identities/fursona"
/> />
</div> </div>
</div>
</WCard> </WCard>
<WCard> <WCard>
<p className="p-4 text-lg text-center text-werefox-blue-dark dark:text-werefox-blue"> <div className="p-2 space-y-2">
Welcome to my little info site! <div className="rounded-lg ring-2 ring-werefox-grey-lightest dark:ring-werefox-grey-darker bg-werefox-grey-lighter dark:bg-werefox-grey-dark">
<p className="p-2 text-center text-md sm:text-lg text-center text-werefox-blue-dark dark:text-werefox-blue">
<p>Welcome to my little info site!</p>
</p> </p>
<p className="pl-4 pr-4 pb-4 text-lg text-center text-werefox-blue-dark dark:text-werefox-blue"> </div>
I'd describe myself as somewhere between a hot date and a hot mess. <div className="rounded-lg ring-2 ring-werefox-grey-lightest dark:ring-werefox-grey-darker bg-werefox-grey-lighter dark:bg-werefox-grey-dark">
Just a witchy foxxo programmer trying to make it in the world tbh. <p className="p-4 text-lg text-center text-werefox-blue-dark dark:text-werefox-blue">
I'd describe myself as somewhere between a hot date and a hot
mess. Just a witchy foxxo programmer trying to make it in the
world tbh.
</p> </p>
<p className="pl-4 pr-4 pb-4 text-lg text-center text-werefox-blue-dark dark:text-werefox-blue"> <p className="pl-4 pr-4 pb-4 text-lg text-center text-werefox-blue-dark dark:text-werefox-blue">
Feel free to click/tap any of the neat buttons above this to learn Feel free to click/tap any of the neat buttons above this to learn
more about my different aspects of personality. more about my different aspects of personality.
</p> </p>
<p className="pl-4 pr-4 pb-4 text-lg text-center text-werefox-blue-dark dark:text-werefox-blue"> <p className="pl-4 pr-4 pb-4 text-lg text-center text-werefox-blue-dark dark:text-werefox-blue">
Down below, I've got some more neat little pages and useful info you Down below, I've got some more neat little pages and useful info
can look at. you can look at.
</p> </p>
<p className="pl-4 pr-4 pb-4 text-lg text-center text-werefox-blue-dark dark:text-werefox-blue"> <p className="pl-4 pr-4 pb-4 text-lg text-center text-werefox-blue-dark dark:text-werefox-blue">
Please do look around and enjoy your stay!~ 💙 Please do look around and enjoy your stay!~ 💙
</p> </p>
</div>
</div>
</WCard> </WCard>
<WCard>
<div className="p-2 space-y-2">
<div className="rounded-lg ring-2 ring-werefox-grey-lightest dark:ring-werefox-grey-darker bg-werefox-grey-lighter dark:bg-werefox-grey-dark">
<p className="p-2 text-center text-md sm:text-lg text-center text-werefox-blue-dark dark:text-werefox-blue">
<p>Useful Pages! (hopefully!)</p>
</p>
</div>
<WCard <WCard
isCardButton="true" isCardButton="true"
extraClasses="" extraClasses=""
@ -153,6 +174,8 @@ export default function Home() {
innerText="FAQ" innerText="FAQ"
url="/faq" url="/faq"
/> />
</div>
</WCard>
</BasicPage> </BasicPage>
); );
} }