@@ -14,6 +14,7 @@ import { GlHeader } from "gitlanding/GlHeader";
1414/*import mesaIconPng from "./assets/img/mesa-favicon.png";*/
1515import mesaLogoPng from "./assets/img/mesa_logo2_200pt.png" ;
1616import mesaMp4 from "./assets/videos/mesa1.mp4" ;
17+ import githubPng from "./assets/img/github.png" ;
1718import { OnyxiaUi } from "theme" ;
1819
1920export function App ( ) {
@@ -42,7 +43,7 @@ function AppContextualized() {
4243function Header ( ) {
4344 return (
4445 < GlHeader
45- title = { < img src = { mesaLogoPng } width = "300 " alt = "MESA" /> }
46+ title = { < img src = { mesaLogoPng } width = "200 " alt = "MESA" /> }
4647 links = { [
4748 {
4849 label : "GitHub" ,
@@ -106,80 +107,75 @@ function Body() {
106107 < >
107108 < GlLogoCard
108109 title = "Code repository"
109- paragraph = { `Lorem` }
110- buttonLabel = "Code repository"
111- iconUrls = { [
112- "https://user-images.githubusercontent.com/39378411/135731995-136d4baf-58a6-4cb3-a72c-b8ddce835b3c.png"
113- ] }
110+ paragraph = { `Source code hosted on GitHub` }
111+ buttonLabel = "Check out the code"
112+ link = { {
113+ href : "https://github.com/MESAHub/mesa"
114+ } }
115+ iconUrls = { [ githubPng ] }
114116 />
115117 < GlLogoCard
116- title = "Card title"
117- paragraph = { `Lorem ipsum dolor sit amet, consectetur adipiscing elit. In cursus,
118- nisl nec hendrerit rutrum,
119- mi enim semper arcu, ut imperdiet urna libero non metus.` }
120- buttonLabel = "Button Label"
118+ title = "Documentation"
119+ paragraph = { `How to install and use MESA` }
120+ buttonLabel = "Read the docs"
121+ link = { {
122+ href : "https://docs.mesastar.org/"
123+ } }
121124 iconUrls = { [
122125 "https://user-images.githubusercontent.com/39378411/135731998-e01a7970-a7c4-4041-b07c-341e075207d2.png"
123126 ] }
124127 />
125128 < GlLogoCard
126- title = "Card title"
127- paragraph = { `Lorem` }
128- buttonLabel = "Button Label"
129+ title = "Zenodo Community"
130+ paragraph = { `Official release versions, SDKs, and MESA project inlists downloads` }
131+ buttonLabel = "Go to Zenodo"
132+ link = { {
133+ href : "https://zenodo.org/communities/mesa/records?q=&l=list&p=1&s=10"
134+ } }
129135 iconUrls = { [
130136 "https://user-images.githubusercontent.com/39378411/135731998-e01a7970-a7c4-4041-b07c-341e075207d2.png"
131137 ] }
132138 />
133139 < GlLogoCard
134- title = "Card title"
135- paragraph = { `Lorem` }
136- buttonLabel = "Button Label"
140+ title = "MESA Marketplace "
141+ paragraph = { `Resources for published papers using MESA` }
142+ buttonLabel = "Go to Marketplace"
143+ link = { {
144+ href : "http://cococubed.com/mesa_market/"
145+ } }
137146 iconUrls = { [
138147 "https://user-images.githubusercontent.com/39378411/135731998-e01a7970-a7c4-4041-b07c-341e075207d2.png"
139148 ] }
140149 />
141150 < GlLogoCard
142- title = "Card title"
143- paragraph = { `Lorem` }
144- buttonLabel = "Button Label"
151+ title = "MESA Users Mailing List"
152+ paragraph = { `Info about new releases, news items, and requests for help/bug reports` }
153+ buttonLabel = "Sign up for the mailing list"
154+ link = { {
155+ href : "https://lists.mesastar.org/mailman/listinfo/mesa-users"
156+ } }
145157 iconUrls = { [
146158 "https://user-images.githubusercontent.com/39378411/135731998-e01a7970-a7c4-4041-b07c-341e075207d2.png"
147159 ] }
148160 />
149161 < GlLogoCard
150- title = "Card title"
151- paragraph = { `Lorem` }
152- buttonLabel = "Button Label"
162+ title = "mesa_reader"
163+ paragraph = { `Python module to interact and plot MESA data` }
164+ buttonLabel = "Get mesa_reader"
165+ link = { {
166+ href : "https://github.com/wmwolf/py_mesa_reader"
167+ } }
153168 iconUrls = { [
154169 "https://user-images.githubusercontent.com/39378411/135731998-e01a7970-a7c4-4041-b07c-341e075207d2.png"
155170 ] }
156171 />
157- < GlLogoCard
158- title = "Card title"
159- paragraph = { `Lorem ipsum dolor sit amet, consectetur adipiscing elit. In cursus,
160- nisl nec hendrerit rutrum,
161- mi enim semper arcu, ut imperdiet urna libero non metus.` }
162- buttonLabel = "Button Label"
163- iconUrls = { [
164- "https://user-images.githubusercontent.com/39378411/135731991-3da13e97-c2f7-42b2-88ab-055aff0d6ae9.png" ,
165- "https://user-images.githubusercontent.com/39378411/135731994-29a3c46a-0d92-4ec8-954e-39bfeeb06534.png" ,
166- "https://user-images.githubusercontent.com/39378411/135731998-e01a7970-a7c4-4041-b07c-341e075207d2.png" ,
167- "https://user-images.githubusercontent.com/39378411/135731990-8f64ce8e-d655-4ded-9561-3d7f6893d06e.png"
168- ] }
169- overlapIcons = { true }
170- />
171172 </ >
172173 }
173174 </ GlCards >
174-
175+ { /*
175176 <GlArticle
176177 title="Article title"
177- body = { `Lorem ipsum dolor sit amet, consectetur adipiscing elit. In cursus,
178- nisl nec hendrerit rutrum,
179- mi enim semper arcu, ut imperdiet urna libero non metus.
180- Donec imperdiet ac nulla sit amet lacinia.
181- Suspendisse volutpat lectus vitae libero luctus, a egestas magna egestas.
182- Suspendisse potenti. In semper erat scelerisque sapien convallis porttitor.` }
178+ body={`Lorem.`}
183179 buttonLabel="Article Button label"
184180 buttonLink={{
185181 href: "https://example.com"
@@ -199,54 +195,63 @@ function Body() {
199195
200196 <GlSectionDivider />
201197
198+ */ }
199+
202200 < GlCheckList
203201 heading = "Modules"
204202 hasAnimation = { true }
205203 elements = { [
206204 {
207- title : "List element title" ,
208- setIconColorOverride : colors => ( {
209- iconColor : colors . palette . greenSuccess . main
210- } ) ,
211- description : `Lorem ipsum dolor sit amet, consectetur adipiscing elit. In cursus,
212- nisl nec hendrerit rutrum,
213- mi enim semper arcu, ut imperdiet urna libero non metus.
214- Donec imperdiet ac nulla sit amet lacinia.
215- `
205+ title : "Star (star)" ,
206+ description : `main module for stellar evolution`
207+ } ,
208+ {
209+ title : "Binary (binary)" ,
210+ description : `module for binary star evolution`
211+ } ,
212+ {
213+ title : "Atmospheres (atm)" ,
214+ description : `calculates the surface temperature and pressure, to use as boundary conditions`
215+ } ,
216+ {
217+ title : "Asteroseismology (astero)" ,
218+ description : `calculates asteroseismic variables`
219+ } ,
220+ {
221+ title : "Automatic Differentiation (auto_diff)" ,
222+ description : `provides automatic calculation of (forward) derivatives using the chain rule`
223+ } ,
224+ {
225+ title : "Element Data (chem)" ,
226+ description : `provides data on the properties of elements and isotopes`
227+ } ,
228+ {
229+ title : "Constants (const)" ,
230+ description : `defines a range of mathematical and physical constants`
231+ } ,
232+ {
233+ title : "Equation of State (eos)" ,
234+ description : `provides the equation of state`
216235 } ,
217236 {
218- title : "List element title" ,
219- description : `Lorem ipsum dolor sit amet, consectetur adipiscing elit. In cursus,
220- nisl nec hendrerit rutrum,
221- mi enim semper arcu, ut imperdiet urna libero non metus.
222- Donec imperdiet ac nulla sit amet lacinia.
223- `
237+ title : "Opacities (kap)" ,
238+ description : `provides radiative opacities combined with conductive opacities`
224239 } ,
225240 {
226- title : "List element title" ,
227- description : `Lorem ipsum dolor sit amet, consectetur adipiscing elit. In cursus,
228- nisl nec hendrerit rutrum,
229- mi enim semper arcu, ut imperdiet urna libero non metus.
230- Donec imperdiet ac nulla sit amet lacinia.
231- `
241+ title : "Nuclear Reaction Networks (net)" ,
242+ description : `implements nuclear reaction networks`
232243 } ,
233244 {
234- title : "List element title" ,
235- description : `Lorem ipsum dolor sit amet, consectetur adipiscing elit. In cursus,
236- nisl nec hendrerit rutrum,
237- mi enim semper arcu, ut imperdiet urna libero non metus.
238- Donec imperdiet ac nulla sit amet lacinia.
239- `
245+ title : "Thermal Neutrinos (neu)" ,
246+ description : `provides the specific rates of energy loss via various thermal neutrino processes`
240247 } ,
241248 {
242- description : `(Only description) Lorem ipsum dolor sit amet, consectetur adipiscing elit. In cursus,
243- nisl nec hendrerit rutrum,
244- mi enim semper arcu, ut imperdiet urna libero non metus.
245- Donec imperdiet ac nulla sit amet lacinia.
246- `
249+ title : "Nuclear Reaction Rates (rates)" ,
250+ description : `provides thermonuclear reaction rates and weak reaction rates`
247251 } ,
248252 {
249- title : "(Only title) List element title"
253+ title : "Turbulence (turb)" ,
254+ description : `provides various mixing theories (semiconvection, thermohaline, mixing length theory, time-dependant convection)`
250255 }
251256 ] }
252257 />
0 commit comments