From a881077f7f57837c7552ff573763be652ae0e3d8 Mon Sep 17 00:00:00 2001
From: biglyderv <eggseggsarecool+git@gmail.com>
Date: Mon, 25 Nov 2024 14:12:43 -0500
Subject: [PATCH] rebranding

---
 static/main.css        | 16 +++++++++++++++-
 views/header.ejs       |  3 ++-
 views/header_block.ejs |  3 +++
 views/main.ejs         | 11 ++---------
 4 files changed, 22 insertions(+), 11 deletions(-)
 create mode 100644 views/header_block.ejs

diff --git a/static/main.css b/static/main.css
index d3a64e6..1b17777 100644
--- a/static/main.css
+++ b/static/main.css
@@ -2,7 +2,7 @@
 body {
     height: 100vh;
     width: 100vw;
-    padding-top: 0px;
+    margin-top: 0px;
 
     display: flex;
     flex-direction: column;
@@ -83,4 +83,18 @@ form {
     background-color: var(--hyperlink);
     font-weight: bold;
     width: 150px;
+}
+
+.header {
+    background: var(--dark-1);
+    color: var(--light-1);
+    padding: 10px;
+    display: flex;
+    width: 100vw;
+    margin: 0;
+}
+
+.header a {
+    font-weight: bold;
+    color: white;
 }
\ No newline at end of file
diff --git a/views/header.ejs b/views/header.ejs
index 668896b..7554983 100644
--- a/views/header.ejs
+++ b/views/header.ejs
@@ -6,4 +6,5 @@
     <link rel='stylesheet' href='/static/main.css'>
 </head>
 
-<body>
\ No newline at end of file
+<body>
+    <%- include('header_block.ejs') -%>
\ No newline at end of file
diff --git a/views/header_block.ejs b/views/header_block.ejs
new file mode 100644
index 0000000..a8a35c6
--- /dev/null
+++ b/views/header_block.ejs
@@ -0,0 +1,3 @@
+<div class='header'>
+    <a href='/'>BiglyChat</a>
+</div>
\ No newline at end of file
diff --git a/views/main.ejs b/views/main.ejs
index 469fc9a..64f7c95 100644
--- a/views/main.ejs
+++ b/views/main.ejs
@@ -1,14 +1,7 @@
 <%- include('header.ejs') -%>
     <div class='area'>
-        <h1>About</h1>
-        <p>
-            <b>BiglyChat</b> is a project sharing communtiy built on <a href='https://scratch.mit.edu/'>Scratch</a> and
-            <a href='https://turbowarp.org'>TurboWarp</a>
-            . The source code is <a href='https://codeberg.org/onezDerv/bigly-chat'>free software</a>.
-        </p>
-        <p>
-            Anyone can selfhost an instance to take control of their community.
-        </p>
+        <h1>BiglyChat</h1>
+        <p>A community for video editing</p>
         <%if (username=='!nobody' ) { %>
             <div class="button"><a href="/client/register">Join</a></div>
             <% } %>