33 lines
1.1 KiB
Plaintext
33 lines
1.1 KiB
Plaintext
package home
|
|
|
|
import "git.jamestombleson.com/jtom38/newsbot-portal/internal/views/layout"
|
|
import "git.jamestombleson.com/jtom38/newsbot-portal/internal/views/bulma"
|
|
|
|
templ Index() {
|
|
@layout.WithTemplate() {
|
|
@bulma.Hero("Welcome to Newsbot!", "Your new home for your news.")
|
|
|
|
<section class="section">
|
|
<p>
|
|
News bot is a self hostable solution to aggregating your news.
|
|
You can run `Newsbot` as an API or interact with it with this site.
|
|
</p>
|
|
</section>
|
|
|
|
|
|
<div class="block">
|
|
<h2 class="title">Why Newsbot</h2>
|
|
I started to build this tool to help me avoid sitting on the big platform websites.
|
|
I wanted a tool that would work for me, not them.
|
|
|
|
This tool started as a notification system that would let me redirect RSS posts over to Discord servers.
|
|
It still has those roots but now its starting to scale up to a full Aggregation platform.
|
|
|
|
</div>
|
|
<p>
|
|
This project is a passion project of mine as I
|
|
</p>
|
|
|
|
}
|
|
}
|