Skip to content

Commit 9792142

Browse files
committed
polish footer: fix link/button sizing, update copy and URLs
1 parent 0c3412f commit 9792142

2 files changed

Lines changed: 13 additions & 8 deletions

File tree

packages/app/src/components/footer/footer-star-cta.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ export function StarButton() {
1717
variant="outline"
1818
size="sm"
1919
className="h-7 gap-1.5 text-xs star-button-glow"
20+
title="Star on GitHub"
2021
data-testid="footer-star-cta"
2122
onClick={() => {
2223
track('footer_star_cta_clicked', { stars: stars ?? 0 });

packages/app/src/components/footer/footer.tsx

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,12 @@ export const Footer = () => {
3434
{/* Main grid */}
3535
<div className="grid grid-cols-1 md:grid-cols-3 gap-10 md:gap-8 mb-10">
3636
{/* Left — Brand */}
37-
<div className="flex flex-col gap-4">
38-
<Link target="_blank" href="https://semianalysis.com/">
37+
<div className="flex flex-col gap-4 items-center md:items-start">
38+
<Link
39+
target="_blank"
40+
href="https://semianalysis.com/"
41+
className="inline-block w-35 h-14.5"
42+
>
3943
<Image
4044
width={140}
4145
height={58}
@@ -52,8 +56,8 @@ export const Footer = () => {
5256
/>
5357
</Link>
5458
<p className="text-sm text-muted-foreground max-w-xs">
55-
Open-source AI inference benchmarks. Transparent, real-world GPU performance data for
56-
the ML community.
59+
Continuous open-source inference benchmarks. Transparent, real-world GPU performance
60+
data for the ML community.
5761
</p>
5862
</div>
5963

@@ -116,7 +120,7 @@ export const Footer = () => {
116120
Benchmarks
117121
</a>
118122
<a
119-
href="https://github.com/SemiAnalysisAI/inferencemax-app"
123+
href="https://github.com/SemiAnalysisAI/InferenceX-app"
120124
target="_blank"
121125
rel="noopener noreferrer"
122126
className="text-sm text-muted-foreground hover:text-foreground transition-colors"
@@ -129,13 +133,13 @@ export const Footer = () => {
129133
{/* Right — CTA + Social */}
130134
<div className="flex flex-col gap-4 md:items-end">
131135
<div className="flex items-center gap-1.5">
132-
<div className="rounded-md bg-background/80">
136+
<div className="rounded-md bg-background/80 w-fit">
133137
<StarButton />
134138
</div>
135-
<div className="rounded-md bg-background/80">
139+
<div className="rounded-md bg-background/80 w-fit">
136140
<ShareTwitterButton />
137141
</div>
138-
<div className="rounded-md bg-background/80">
142+
<div className="rounded-md bg-background/80 w-fit">
139143
<ShareLinkedInButton />
140144
</div>
141145
</div>

0 commit comments

Comments
 (0)