newsbot-portal/internal/views/home/index.templ

28 lines
687 B
Plaintext
Raw Normal View History

2024-05-11 09:56:19 -07:00
package home
import "git.jamestombleson.com/jtom38/newsbot-portal/internal/views/layout"
templ Index() {
@layout.WithTemplate() {
<h1 class="title">Welcome to Newsbot</h1>
<section class="section">
<p>
News bot is a self hostable solution to aggregating your news.
You can run `Newsbot` as an API
</p>
</section>
<div class="block">
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.
</div>
<p>
This project is a passion project of mine as I
</p>
}
}