-
-
Notifications
You must be signed in to change notification settings - Fork 288
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2253625
commit 54ba108
Showing
2 changed files
with
35 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import { Text } from 'preact-i18n'; | ||
|
||
const ComingSoon = ({ children, ...props }) => ( | ||
<div class="page"> | ||
<div class="page-main"> | ||
<div class="my-3 my-md-5"> | ||
<div class="container"> | ||
<div class="page-header"> | ||
<h1 class="page-title"> | ||
<Text id="scene.title" /> | ||
</h1> | ||
</div> | ||
<div> | ||
<div> | ||
<div class="card"> | ||
<div class="card-body"> | ||
<div class="alert alert-info">Scene support coming soon! 🚧</div> | ||
<p>The scene core/API is working, but we are still working on a clean UI 🙂 Stay updated!</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
|
||
export default ComingSoon; |
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