Skip to content

Commit

Permalink
Minimal MVP
Browse files Browse the repository at this point in the history
  • Loading branch information
ujaandas committed Aug 19, 2024
1 parent 8320955 commit 9951222
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default async function Home() {
// <SectionScroller data={postData} />
// </div>
// </main>
<main className="flex flex-col md:flex-row justify-center text-cat-latte-subtext-0">
<main className="flex flex-col md:flex-row p-10 align-middle items-center justify-center text-cat-latte-subtext-0">
<AboutMe />
</main>
);
Expand Down
9 changes: 6 additions & 3 deletions src/components/chunks/AboutMe.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,15 @@ async function AboutMe() {
return (
<div className="flex flex-col justify-center align-middle">
<ProfilePic />
<BarItem text={`${aboutMe.name}`} textStyle="text-xl font-extrabold" />
<BarItem text={`${aboutMe.name}`} textStyle="text-5xl font-extrabold" />
<BarItem
text={`${aboutMe.currentRole} @ ${aboutMe.currentCompany}`}
textStyle="text-md"
/>
<BarItem
text={`@${aboutMe.username} · ${aboutMe.pronouns}`}
textStyle="text-sm font-thin"
textStyle="text-md font-thin"
/>
<BarItem text={`${aboutMe.currentRole} @ ${aboutMe.currentCompany}`} />
<div className="flex flex-row">
<BarItem link={aboutMe.links.github}>
<FaGithub
Expand Down

0 comments on commit 9951222

Please sign in to comment.