-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: accommodate new company info pages
- Loading branch information
1 parent
7268083
commit ae05356
Showing
7 changed files
with
26 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,8 @@ def Page(): | |
""" | ||
# Careers | ||
We are always looking for talented individuals to join our team. If you're still be interested after reading the rest of this page, reach out at [[email protected]](mailto:[email protected]). | ||
""" | ||
""", | ||
style={"max-width": "90%", "margin": "0 auto"}, | ||
) | ||
with solara.Row(style={"flex-wrap": "wrap", "align-items": "stretch"}, gap="0"): | ||
with Tile(): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
from pathlib import Path | ||
|
||
import solara | ||
from solara.website.components.sidebar import Sidebar | ||
from solara.website.components import MarkdownWithMetadata | ||
|
||
title = "Changelog" | ||
HERE = Path(__file__) | ||
|
||
Page = solara.Markdown(Path(HERE.parent / "changelog.md").read_text()) | ||
Page = MarkdownWithMetadata(Path(HERE.parent / "changelog.md").read_text()) | ||
Sidebar = Sidebar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
from pathlib import Path | ||
|
||
from solara.website.components.markdown import MarkdownWithMetadata | ||
from solara.website.components.sidebar import Sidebar | ||
|
||
|
||
title = "Roadmap" | ||
HERE = Path(__file__) | ||
Sidebar = Sidebar | ||
|
||
Page = MarkdownWithMetadata(Path(HERE.parent / "roadmap.md").read_text()) |