1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-06-05 19:15:30 -04:00

feat: increase GitHub repository limit and enhance styling

- Updated repository limit from 12 to 24 in getRepos function.
- Added new icons and adjusted styles for better visual consistency in the page component.
- Modified text sizes and spacing for improved layout and readability.
This commit is contained in:
2026-02-19 14:44:29 -05:00
parent 6f86fd1ca9
commit b857ab2754
6 changed files with 20 additions and 23 deletions
+1 -1
View File
@@ -67,7 +67,7 @@ const Header = ({ className }: { className?: string }) => {
<Menu />
</div>
<div className="flex items-center gap-2">
<div className="flex items-center gap-2.5">
<Button
variant="ghost"
size="sm"
+1 -1
View File
@@ -37,7 +37,7 @@ const Menu = () => {
return (
<nav data-slot="navigation-menu">
{/* Desktop: Show all buttons */}
<div className="hidden items-center gap-1.5 sm:flex">
<div className="hidden items-center gap-2 sm:flex">
{menuItems.map((item) => {
const isCurrent = item.href?.split("/")[1] === segment;
+1 -1
View File
@@ -18,7 +18,7 @@ const PageTitle = ({
>
<Link
href={canonical}
className="text-foreground no-underline before:mr-[-3px] before:text-muted-foreground before:tracking-wider before:content-['\002E\002F']"
className="text-foreground no-underline before:text-muted-foreground before:tracking-wider before:content-['\002E\002F']"
>
{children}
</Link>