-
Notifications
You must be signed in to change notification settings - Fork 1
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
8af52ce
commit b23dc82
Showing
8 changed files
with
57 additions
and
20 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,8 +1,26 @@ | ||
import './style.css'; | ||
|
||
export function About() { | ||
// @ts-ignore | ||
// eslint-disable-next-line no-undef | ||
const githubRepo = __GITHUB_REPO__; | ||
// @ts-ignore | ||
// eslint-disable-next-line no-undef | ||
const discordInvite = __DISCORD_INVITE__; | ||
return ( | ||
<div class="about"> | ||
<h1>About</h1> | ||
<div class="about_box box"> | ||
<p>The OpenNeptune3D Slicer Generator is a simple tool to generate configuration profiles for slicers supported by the OpenNeptune3D project.</p> | ||
<p>It is designed to be a simple way to generate a configuration profile for your printer, with the ability to select the filaments and print processes you want to include in your profile.</p> | ||
</div> | ||
|
||
<div class="about_box box"> | ||
<h2>Community Contributed Profiles</h2> | ||
<p>We are also collecting a list of community contributed profiles to include in this tool.</p> | ||
<p>You can create a <a href={githubRepo + "/pulls"} target="_blank">Pull Request on Github</a> with your printer, filament or print process profiles to contribute to this list.</p> | ||
<p>Alternatively you can provide your profile in our <a href={discordInvite} target="_blank">Discord</a> if you do not have a Github account.</p> | ||
</div> | ||
</div> | ||
); | ||
} |
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,7 @@ | ||
.about_box { | ||
padding: 0.75rem 1.5rem; | ||
border-radius: 0.5rem; | ||
text-align: left; | ||
text-decoration: none; | ||
margin-top: 2rem; | ||
} |
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