about summary refs log tree commit diff
path: root/lib/rook_web/templates/layout
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rook_web/templates/layout')
-rw-r--r--lib/rook_web/templates/layout/app.html.eex12
1 files changed, 3 insertions, 9 deletions
diff --git a/lib/rook_web/templates/layout/app.html.eex b/lib/rook_web/templates/layout/app.html.eex
index d651e23..e840b54 100644
--- a/lib/rook_web/templates/layout/app.html.eex
+++ b/lib/rook_web/templates/layout/app.html.eex
@@ -5,17 +5,11 @@
     <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
     <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
     <title>Rook</title>
+    <link rel="preconnect" href="https://fonts.gstatic.com">
+    <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
     <link rel="stylesheet" href="<%= Routes.static_path(@conn, "/css/app.css") %>"/>
   </head>
   <body>
-    <header>
-      <section class="container">
-        Rook
-    </header>
-    <main role="main" class="container">
-      <p class="alert alert-info" role="alert"><%= get_flash(@conn, :info) %></p>
-      <p class="alert alert-danger" role="alert"><%= get_flash(@conn, :error) %></p>
-      <%= @inner_content %>
-    </main>
+    <%= @inner_content %>
   </body>
 </html>