rebranding

This commit is contained in:
biglyderv 2024-11-25 14:12:43 -05:00
parent e92c87c5da
commit a881077f7f
4 changed files with 22 additions and 11 deletions

View file

@ -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;
}

View file

@ -6,4 +6,5 @@
<link rel='stylesheet' href='/static/main.css'>
</head>
<body>
<body>
<%- include('header_block.ejs') -%>

3
views/header_block.ejs Normal file
View file

@ -0,0 +1,3 @@
<div class='header'>
<a href='/'>BiglyChat</a>
</div>

View file

@ -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>
<% } %>