Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add snyder as sponsor to the doc website #1143

Merged
merged 8 commits into from
Jun 10, 2024
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
30 changes: 19 additions & 11 deletions apps/docs-app/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,12 @@ function HomepageHeader() {
}

function SponsorSection() {
// Define your light and dark theme logos
const lightThemeLogo = 'https://link-to-light-theme-logo';
const darkThemeLogo = 'https://link-to-dark-theme-logo';

return (
<section className={clsx('hero', styles.heroBanner)}>
<section className={clsx('hero', styles.heroBanner, styles.horizontal)}>
<div className="container">
<h3>
<Translate
Expand All @@ -65,27 +69,31 @@ function SponsorSection() {
</Translate>
</p>

<div>
<div className={styles.horizontalSponsors}>
<a
href="https://github.blog/2023-04-12-github-accelerator-our-first-cohort-and-whats-next/"
target="_blank"
>
<img
src="https://raw.githubusercontent.com/analogjs/analog/main/apps/docs-app/static/img/logos/github-logo.svg"
width="100px"
height="100px"
src="../img/logos/github-logo.svg"
alt="GitHub Accelerator"
style={{ marginRight: '30px', width: '80px', height: '100px' }}
/>
</a>
</div>

<div>
<a href="https://nx.dev" target="_blank">
<img
src="https://raw.githubusercontent.com/analogjs/analog/main/apps/docs-app/static/img/logos/nx.svg"
width="100px"
height="100px"
alt="NxDevTools"
src="./img/logos/nx-logo.light.svg"
alt="NX Dev"
style={{ marginRight: '30px', width: '100px', height: '100px' }}
/>
</a>

<a href="https://snyder.tech" target="_blank">
<img
src="./img/logos/snyder-logo.light.svg"
alt="Snyder Tech"
style={{ marginRight: '30px', width: '250px', height: '100px' }}
/>
</a>
</div>
Expand Down
11 changes: 11 additions & 0 deletions apps/docs-app/static/img/logos/nx-logo.light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 30 additions & 0 deletions apps/docs-app/static/img/logos/snyder-logo.dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 30 additions & 0 deletions apps/docs-app/static/img/logos/snyder-logo.light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading