@@ -3,6 +3,7 @@ import Link from '@docusaurus/Link';
33import useDocusaurusContext from '@docusaurus/useDocusaurusContext' ;
44import Layout from '@theme/Layout' ;
55import CodeBlock from '@theme/CodeBlock' ;
6+ import ThemedImage from '@theme/ThemedImage' ;
67
78import styles from './index.module.css' ;
89
@@ -21,8 +22,7 @@ function HeroSection() {
2122 </ Link >
2223 < Link
2324 className = "button button--secondary button--lg"
24- href = "https://github.com/wcrum/imageshift"
25- style = { { marginLeft : '1rem' } } >
25+ href = "https://github.com/wcrum/imageshift" >
2626 GitHub
2727 </ Link >
2828 </ div >
@@ -111,6 +111,27 @@ function UseCasesSection() {
111111 ) ;
112112}
113113
114+ function PartnerSection ( ) {
115+ return (
116+ < section className = { styles . partner } >
117+ < div className = "container" >
118+ < h2 className = { styles . sectionTitle } > Proudly Developed At</ h2 >
119+ < div className = { styles . partnerLogo } >
120+ < Link href = "https://www.spectrocloud.com/solutions/government" >
121+ < ThemedImage
122+ alt = "Spectro Cloud Government"
123+ sources = { {
124+ light : '/img/Government_SpectroCloud_Horizontal_light-bkgd_RGB.png' ,
125+ dark : '/img/Government_SpectroCloud_Horizontal_dark-bkgd_RGB.png' ,
126+ } }
127+ />
128+ </ Link >
129+ </ div >
130+ </ div >
131+ </ section >
132+ ) ;
133+ }
134+
114135const quickStartYaml = `# 1. Label your namespace
115136kubectl label namespace default imageshift.dev=enabled
116137
@@ -164,6 +185,7 @@ export default function Home() {
164185 < main >
165186 < FeatureSection />
166187 < UseCasesSection />
188+ < PartnerSection />
167189 < QuickStartSection />
168190 </ main >
169191 </ Layout >
0 commit comments