Skip to content

Commit

Permalink
fix: more text issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sreetamdas committed Oct 5, 2024
1 parent ced3e24 commit 2fb6e63
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/(main)/karma/Showcase.client.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export const KarmaShowcase = ({ examples }: Props) => {

return (
<article key={name.toLowerCase()} className="flex flex-col items-center">
<h2 id={name.toLowerCase()} className="font-serif text-5xl">
<h2 id={name.toLowerCase()} className="font-serif text-5xl font-bold tracking-tight">
{name}
</h2>
<span className="h-auto w-full max-w-[95vw] rounded-global sm:max-w-[75vw]">
Expand Down
2 changes: 1 addition & 1 deletion src/app/(main)/keebs/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default async function KeebsPage() {
{keebs.map(({ name, tags, image }) => (
<article key={name.toLowerCase().replace(" ", "-")} className="grid gap-4">
<div className="grid grid-flow-col items-center justify-between gap-8">
<h3 className="pt-0 font-serif text-3xl">{name}</h3>
<h3 className="pt-0 font-serif text-3xl font-medium tracking-tight">{name}</h3>
<span className="flex gap-2">
{tags.map((tag) => (
<span
Expand Down
2 changes: 1 addition & 1 deletion src/app/(pure)/fancy-pants/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function FancyPantsPage() {
<h1 className="font-mono font-black leading-normal -tracking-[0.065em] [font-size:clamp(4rem,_10vw,_10rem)]">
<ChameleonHighlight>Sreetam Das</ChameleonHighlight>
</h1>
<p className="w-3/4 font-serif text-7xl leading-normal">
<p className="w-3/4 font-serif text-7xl font-bold leading-normal tracking-tighter">
is a{" "}
<ChameleonHighlight className="font-mono font-black -tracking-[0.065em]">
Senior Software Tinkerer
Expand Down

0 comments on commit 2fb6e63

Please sign in to comment.