-
Notifications
You must be signed in to change notification settings - Fork 0
Rework Menu #15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Rework Menu #15
Changes from 1 commit
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
d525d3c
Add Tools page
waaaaargh 9ebb934
fmt
waaaaargh d7147ae
Change some colors
waaaaargh 3f7184f
Remove stray log statements
waaaaargh ef48928
Only output events that start in current month
waaaaargh 37b57e2
Switch to card-lg and fixed width
waaaaargh 74a4309
fmt
waaaaargh File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next
Next commit
Add Tools page
- Loading branch information
commit d525d3c6663d7c978178bc3990c1621ff5768be2
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,76 @@ | ||
--- | ||
import Layout from "../layouts/Layout.astro"; | ||
import { Icon } from "astro-icon/components"; | ||
--- | ||
|
||
<Layout title="tools"> | ||
<div class="my-10 mx-10 md:mx-auto w-auto max-w-prose"> | ||
<h2>Tools</h2> | ||
|
||
<div class="grid grid-cols-1 md:grid-cols-2 gap-10"> | ||
<div class="card bg-base-100 card-sm w-auto shadow-sm"> | ||
<div class="card-body"> | ||
<h2 class="card-title">Wiki</h2> | ||
<p> | ||
Hier findest du mehr Informationen zu Infrastruktur und Projekten in unserem Space. Die Wiki wird von unseren Mitgliedern gepflegt. | ||
</p> | ||
<div class="card-actions justify-end"> | ||
<a href="https://wiki.openlab-augsburg.de" class="btn btn-md"> | ||
<Icon name="mdi:link-variant" size="20" /> | ||
Zur Wiki | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="card bg-base-100 card-sm w-auto shadow-sm"> | ||
<div class="card-body"> | ||
<h2 class="card-title">Cryptpad</h2> | ||
<p> | ||
Wir nutzen Cryptpad zum sicheren gemeinsamen Bearbeiten von Dateien und um datensparsame Umfragen zu erstellen und zu teilen. | ||
</p> | ||
<div class="card-actions justify-end"> | ||
<a href="https://ola.lol" class="btn btn-md"> | ||
<Icon name="mdi:link-variant" size="20" /> | ||
Zu CryptPad | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="card bg-base-100 card-sm w-auto shadow-sm"> | ||
<div class="card-body"> | ||
<h2 class="card-title">Chat</h2> | ||
<p> | ||
Als Chat-Platform nutzen wir Matrix. Auf unserer Wiki-Seite findest du alle Infos, die du brauchst, um dir einen Account und mitzumachen. | ||
</p> | ||
<div class="card-actions justify-end"> | ||
<a href="https://wiki.openlab-augsburg.de/de/Space/Infrastruktur/chat" class="btn btn-md"> | ||
<Icon name="mdi:link-variant" size="20" /> | ||
Mehr Infos | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="card bg-base-100 card-sm w-auto shadow-sm"> | ||
<div class="card-body"> | ||
<h2 class="card-title">Mitgliederportal</h2> | ||
<p> | ||
Einige unserer Tools stellen wir nur unseren Mitgliedern zur Verfügung. Diese findest Du auf einen Blick im Mitgliederportal. | ||
</p> | ||
<div class="card-actions justify-end"> | ||
<a href="https://auth.openlab-augsburg.de" class="btn btn-md"> | ||
<Icon name="mdi:lock" size="20" /> | ||
|
||
Zum Mitgliederportal | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
|
||
</div> | ||
</div> | ||
</Layout> |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider using consistent branding text between mobile and desktop views (e.g., 'OpenLab Augsburg e.V.' vs 'OpenLab Augsburg') to enhance user experience.
Copilot uses AI. Check for mistakes.