-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(site): working on additional pages
- Loading branch information
Showing
6 changed files
with
82 additions
and
5 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,17 @@ | ||
--- | ||
title: "Contact" | ||
description: "Connect with us on Discord for support and consulting" | ||
type: "contact" | ||
--- | ||
|
||
## Connect with Us! | ||
|
||
We invite you to join our Discord community, the best place to connect with us for any reason. Whether you have questions, need support with issues, are seeking consulting advice, or simply want to engage with fellow enthusiasts, our Discord server is the place to be. | ||
|
||
[Join our Discord Server →](https://discord.gg/SMaXVZMReK) | ||
|
||
Our Discord community offers: | ||
- Direct communication with our team for support and consulting | ||
- Real-time discussions and assistance | ||
- A welcoming community of like-minded individuals | ||
- The latest updates and announcements |
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,5 +1,6 @@ | ||
--- | ||
title: "Learn" | ||
url: "/learn/" | ||
type: "learn" | ||
--- | ||
Learn content goes here. |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{{ define "main" }} | ||
<section class="article no-left-margin"> | ||
<header> | ||
<h1>{{ .Title }}</h1> | ||
<h2>{{ .Description }}</h2> | ||
</header> | ||
|
||
<article class="markdown"> | ||
<div class="content"> | ||
{{ .Content }} | ||
</div> | ||
</article> | ||
</section> | ||
{{ end }} |
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,14 @@ | ||
{{ define "main" }} | ||
<section> | ||
<h1>Learn</h1> | ||
<div> | ||
<section class="article no-left-margin"> | ||
<header> | ||
<h1>{{ .Title }}</h1> | ||
<h2>{{ .Description }}</h2> | ||
</header> | ||
|
||
<article class="markdown"> | ||
<div class="content"> | ||
{{ .Content }} | ||
</div> | ||
</section> | ||
</article> | ||
</section> | ||
{{ end }} |
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,6 +1,6 @@ | ||
{{ define "main" }} | ||
<section> | ||
<h1>Support</h1> | ||
<h1>{{ .Title }}</h1> | ||
<div> | ||
{{ .Content }} | ||
</div> | ||
|