2024-05-12 09:22:47 -07:00
|
|
|
package home
|
|
|
|
|
|
|
|
import "git.jamestombleson.com/jtom38/newsbot-portal/internal/views/layout"
|
2024-07-13 10:38:54 -07:00
|
|
|
import "git.jamestombleson.com/jtom38/newsbot-portal/components/bulma"
|
2024-05-12 09:22:47 -07:00
|
|
|
|
|
|
|
templ About() {
|
|
|
|
@layout.WithTemplate(){
|
2024-07-13 10:38:54 -07:00
|
|
|
@bulma.Title("About this project")
|
|
|
|
@bulma.Block() {
|
2024-05-12 09:22:47 -07:00
|
|
|
Newsbot started a small project to send out notifications to discord servers.
|
|
|
|
I wanted to be able to keep the small communitiy aware of new posts about a game we all played.
|
|
|
|
That feature still exists because I think that keeping a communitiy aware and engaged is important and not everyone follows the same news.
|
2024-07-13 10:38:54 -07:00
|
|
|
}
|
2024-05-12 09:22:47 -07:00
|
|
|
}
|
|
|
|
}
|