Updated navbar styles a bit; started work on dashboard

This commit is contained in:
2023-03-03 11:56:55 -05:00
parent b43d155eee
commit e731f6c84b
3 changed files with 64 additions and 5 deletions

View File

@ -1,8 +1,17 @@
namespace '/' do
get '' do
channels = [
{
:name => 'Bit Goblin',
:openProjects => 'N/a',
:totalProjects => 'N/a',
:last_updated => 'N/a'
}
]
erb :index, :locals => {
:title => 'Dashboard'
:title => 'Dashboard',
:channels => channels
}
end