Skip to content

Commit 8a57b50

Browse files
authored
site: make adopters linkable and unify style (#1677)
1 parent 979eef1 commit 8a57b50

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

site/src/components/Adopters/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ function AdopterLogo({ name, logoUrl, url, description }: Adopter) {
5757

5858
export default function Adopters(): React.ReactElement {
5959
return (
60-
<section className={styles.adoptersSection}>
60+
<section id="adopters" className={styles.adoptersSection}>
6161
<div className="container">
6262
<div className={styles.sectionHeader}>
6363
<Heading as="h2" className={styles.sectionTitle}>

site/src/components/LLMProviders/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ function ProviderLogo({ name, logoUrl, status }: LLMProvider) {
119119

120120
export default function LLMProviders(): React.ReactElement {
121121
return (
122-
<section className={styles.providersSection}>
122+
<section id="llm-providers" className={styles.providersSection}>
123123
<div className="container">
124124
<div className={styles.sectionHeader}>
125125
<Heading as="h2" className={styles.sectionTitle}>

site/src/pages/talks.tsx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import React from 'react';
22
import Layout from '@theme/Layout';
33
import Heading from '@theme/Heading';
4+
import Link from '@docusaurus/Link';
45
import talksData from '../data/talks.json';
56
import styles from './talks.module.css';
67

@@ -68,13 +69,13 @@ export default function Talks(): React.ReactElement {
6869
Watch talks and presentations about Envoy AI Gateway from conferences, meetups, and community events.
6970
</p>
7071
<div className={styles.contributeButton}>
71-
<a
72+
<Link
73+
className="button button--primary button--lg"
7274
href="https://github.com/envoyproxy/ai-gateway/edit/main/site/src/data/talks.json"
7375
target="_blank"
74-
rel="noopener noreferrer"
75-
className={styles.button}>
76+
rel="noopener noreferrer">
7677
Add your session!
77-
</a>
78+
</Link>
7879
</div>
7980
</div>
8081

0 commit comments

Comments
 (0)