Skip to content
Merged
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
1 change: 1 addition & 0 deletions blog/2025-06-03_week_1_round_up.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ We use Google Groups to share architecture diagrams and other content. Please jo

* [https://llm-d.ai](https://llm-d.ai)
* [LinkedIn](http://linkedin.com/company/llm-d)
* [Bluesky - @llm-d.ai](https://bsky.app/profile/llm-d.ai)
* [@\_llm\_d\_](https://twitter.com/_llm_d_)
* [r/llm\_d](https://www.reddit.com/r/llm_d/)
* YouTube - coming soon
1 change: 1 addition & 0 deletions docs/community/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ import Link from '@docusaurus/Link';
Follow llm-d across social platforms for updates, discussions, and community highlights:

- 💼 **LinkedIn**: [@llm-d](https://linkedin.com/company/llm-d)
- 🦋 **Bluesky**: [@llm-d.ai](https://bsky.app/profile/llm-d.ai)
- 🐦 **X (Twitter)**: [@\_llm_d\_](https://x.com/_llm_d_)
- 🤖 **Reddit**: [r/llm_d](https://www.reddit.com/r/llm_d/)

Expand Down
3 changes: 3 additions & 0 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,9 @@ const config = {
<a href="https://www.reddit.com/r/llm_d/" target="_blank" rel="noreferrer noopener" aria-label="Reddit">
<img src="/img/new-social/reddit-mark-white.png" alt="Reddit" />
</a>
<a href="https://bsky.app/profile/llm-d.ai" target="_blank" rel="noreferrer noopener" aria-label="Bluesky">
<img src="/img/new-social/bluesky-mark-white.svg" alt="Bluesky" />
</a>
<a href="https://x.com/_llm_d_" target="_blank" rel="noreferrer noopener" aria-label="X / Twitter">
<img src="/img/new-social/x-mark-white.png" alt="X / Twitter" />
</a>
Expand Down
27 changes: 21 additions & 6 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,25 @@ display: none !important;
}

.footer-socials-row {
display: flex;
gap: 14px;
flex-wrap: wrap;
display: grid;
grid-template-columns: repeat(6, 26px);
gap: 10px;
align-items: center;
justify-content: start;
}

/* Responsive layout for smaller footer widths */
@media screen and (max-width: 996px) {
.footer-socials-row {
grid-template-columns: repeat(3, 28px);
gap: 12px;
justify-content: start;
}

.footer-socials img {
width: 28px;
height: 28px;
}
}

.footer-socials-cta {
Expand All @@ -90,14 +105,14 @@ display: none !important;
}

.footer-socials img {
width: 28px;
height: 28px;
width: 26px;
height: 26px;
display: inline-block;
transition: transform 0.2s ease;
}

.footer-socials img:hover {
transform: scale(1.08);
transform: scale(1.1);
}

/* Navbar GitHub icon */
Expand Down
3 changes: 3 additions & 0 deletions static/img/new-social/bluesky-mark-white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions static/img/new-social/bluesky-mark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading