@@ -2,6 +2,8 @@ import { themes as prismThemes } from "prism-react-renderer";
22import type { Config } from "@docusaurus/types" ;
33import type * as Preset from "@docusaurus/preset-classic" ;
44
5+ let copyright = `Copyright © ${ new Date ( ) . getFullYear ( ) } · QuantStack website · Built with Docusaurus` ;
6+
57const config : Config = {
68 title : "QuantStack" ,
79 tagline : "" ,
@@ -62,8 +64,7 @@ const config: Config = {
6264 title : "" ,
6365 logo : {
6466 alt : "QuantStack Logo" ,
65- src : "/img/quantstack/logo-website.svg"
66-
67+ src : "img/quantstack/logo-website.svg" ,
6768 } ,
6869
6970 items : [
@@ -129,30 +130,43 @@ const config: Config = {
129130 } ,
130131 ] ,
131132 } ,
132-
133+
133134 footer : {
134135 links : [
135136 {
136137 title : " " ,
137138 items : [
138139 {
139- html : `
140-
141- <img src="img/quantstack/logo-quantstack.svg" alt="QuantStack logo" width="200px" />
142- <div class="footer-astronaut">
143- <img src="img/quantstack/astronaut-footer.svg" alt="Astronaut" />
144- </div>
145- ` ,
140+ label : " " ,
141+ className : "quantstack-astronaut-footer" ,
142+ href : "/home" ,
146143 } ,
147144 ] ,
148145 } ,
146+
149147 {
150- title : " " ,
148+ title : "Follow QuantStack on " ,
151149 items : [
152150 {
153- label : "Home" ,
154- href : "/home/" ,
151+ label : "GitHub" ,
152+ className : "github-icon" ,
153+ href : "https://github.com/QuantStack" ,
154+ } ,
155+ {
156+ label : "LinkedIn" ,
157+ className : "linkedin-icon" ,
158+ href : "https://www.linkedin.com/company/quantstack/mycompany/" ,
155159 } ,
160+ {
161+ label : "X" ,
162+ className : "x-icon" ,
163+ href : "https://twitter.com/QuantStack" ,
164+ } ,
165+ ] ,
166+ } ,
167+ {
168+ title : "Menu " ,
169+ items : [
156170 {
157171 label : "Projects" ,
158172 href : "/projects/" ,
@@ -175,35 +189,29 @@ const config: Config = {
175189 } ,
176190 ] ,
177191 } ,
192+
193+
178194 {
179195 title : " " ,
180196 items : [
181197 {
182198 html : `
183- <div>
184- <div class="social-media-links">
185- <a href="https://github.com/QuantStack" target="_blank" rel="noreferrer noopener" aria-label="Visit our Github page">
186- <img src="img/socialmedias/GH.svg" alt="Visit our GitHub page" width="36" height="36" />
187- </a>
188- <a href="https://www.linkedin.com/company/quantstack/mycompany/" target="_blank" rel="noreferrer noopener" aria-label="Visit our LinkedIn page">
189- <img src="img/socialmedias/LinkedIn.svg" alt="Visit our LinkedIn page" width="36" height="36" />
190- </a>
191- <a href="https://twitter.com/QuantStack" target="_blank" rel="noreferrer noopener" aria-label="Visit our X page">
192- <img src="img/socialmedias/X.svg" alt="Visit our X page" width="36" height="36" />
193- </a>
194- </div>
199+
195200 <div class="office-address">
196- <b>QuantStack Office </b><br/>
197- 16 avenue Curti <br/>
201+ <b> QuantStack Office </b> <br/>
202+ <br/>
203+ 16, avenue Curti <br/>
198204 94 100 Saint Maur des Fossés <br/>
199205 France
200206 </div>
201- </div>
207+
202208 ` ,
203209 } ,
204210 ] ,
205211 } ,
206212 ] ,
213+
214+ copyright : copyright ,
207215 } ,
208216
209217 prism : {
0 commit comments