chore: get overview page to show without errors

This commit is contained in:
Nelson Jovel 2024-01-18 14:13:17 -08:00
parent 650a91ca62
commit 589c0f7e11
7 changed files with 31 additions and 16 deletions

View file

@ -21,8 +21,22 @@
<%= render partial: 'layouts/dashboard/google_analytics', locals: { google_analytics_id: @google_analytics_id } %>
</head>
<body>
<div>
<%= render partial: 'layouts/dashboard/header' %>
</div>
<%= yield %>
<div class="bg-color-light-blue">
<div class="container">
<div class="row">
<div class="col mt-7">
<%= yield %>
</div>
</div>
</div>
</div>
<div>
<%= render partial: 'layouts/dashboard/footer' %>
</div>
</body>
</html>