Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion website/src/components/sections/Pathways.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const Pathways: FC = () => (
<section className="pathways" aria-label="Get started with Apache APISIX">
{PATHWAYS.map((pathway) => (
<Link className="pathways__card" to={pathway.to} key={pathway.id}>
<h3 className="pathways__title">{pathway.title}</h3>
<h2 className="pathways__title">{pathway.title}</h2>
<p className="pathways__desc">{pathway.description}</p>
<span className="pathways__cta">
{pathway.cta}
Expand Down
4 changes: 2 additions & 2 deletions website/src/css/landing-sections/ai-gateway-home.scss
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
}

.ai-home__provider--more {
color: #888;
color: #6b6b6b;
}

.ai-home__grid {
Expand Down Expand Up @@ -148,7 +148,7 @@
margin-top: 2rem;
font-size: 1rem;
font-weight: 600;
color: #e8433e;
color: #c7352f;

&:hover {
color: #c7352f;
Expand Down
4 changes: 2 additions & 2 deletions website/src/css/landing-sections/comparison.scss
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
}

.compare-col-apisix {
color: #e8433e;
color: #c7352f;
}

.compare-col-apisix,
Expand All @@ -85,7 +85,7 @@
}

.compare-other-cell {
color: #8a8a8a;
color: #6b6b6b;
}

.compare-table svg {
Expand Down
2 changes: 1 addition & 1 deletion website/src/css/landing-sections/hero.scss
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,6 @@

.hero-stats__label {
font-size: 0.85rem;
color: #777;
color: #6b6b6b;
margin-top: 2px;
}
2 changes: 1 addition & 1 deletion website/src/css/landing-sections/integrations.scss
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
margin-top: 2rem;
font-size: 1rem;
font-weight: 600;
color: #e8433e;
color: #c7352f;

&:hover {
color: #c7352f;
Expand Down
2 changes: 1 addition & 1 deletion website/src/css/landing-sections/pathways.scss
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
.pathways__cta {
font-size: 0.95rem;
font-weight: 600;
color: #e8433e;
color: #c7352f;
}

@media (prefers-reduced-motion: reduce) {
Expand Down
5 changes: 3 additions & 2 deletions website/src/css/showcase.scss
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,9 @@
padding: 30px 10px;

.logo {
max-width: 100px;
max-height: 40px;
width: 100px;
height: 40px;
object-fit: contain;
}
}

Expand Down
2 changes: 1 addition & 1 deletion website/src/pages/showcase.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const UserCard: FC<UserCardProps> = (props) => {
return (
<div className="user-card">
<a href={infoLink}>
<img className="logo" src={image} alt={caption} />
<img className="logo" src={image} alt={caption} width={100} height={40} />
</a>
</div>
);
Expand Down
Loading