pleroma-like client for Bluesky pl.hexmani.ac
bluesky pleroma social-media

Organize public folder and fix relative links

hexmani.ac 643b3675 b3805e9f

verified
Changed files
+8 -8
src
components
routes
static
+1 -1
README.md
···
-
<img src="static/logo.png" alt="The Bluroma logo, containing three rectangles with one rounded corner each shaped to look like an uppercase B and the Bluroma name written in the Convection font beside it." width="200">
+
<img src="static/media/logo.png" alt="The Bluroma logo, containing three rectangles with one rounded corner each shaped to look like an uppercase B and the Bluroma name written in the Convection font beside it." width="200">
## About
+3 -3
index.html
···
<!doctype html>
<html lang="en">
<head>
-
<link rel="icon" href="/favicon.png" type="image/png" />
+
<link rel="icon" href="favicon.png" type="image/png" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#1285FE" />
···
<p>Please enable
JavaScript to continue.</p>
</p>
-
<img src="/favicon.png" alt="Bluroma Logo" />
+
<img src="favicon.png" alt="Bluroma Logo" />
</div>
</noscript>
</body>
-
<script src="/src/index.tsx" type="module"></script>
+
<script src="src/index.tsx" type="module"></script>
</html>
+1 -1
src/components/navbar.tsx
···
<nav id="nav">
<div class="center-nav">
<A href={loginState() ? "/dash" : "/"}>
-
<img src="favicon.png" />
+
<img src="./favicon.png" />
</A>
</div>
</nav>
+3 -3
src/routes/splash.tsx
···
import { Component } from "solid-js";
import "../styles/main.scss";
-
import typefaceLogo from "/logo.png?url";
-
import blueskyLogo from "/bluesky.svg?url";
-
import tangledLogo from "/tangled.svg?url";
+
import typefaceLogo from "/media/logo.png?url";
+
import blueskyLogo from "/media/bluesky.svg?url";
+
import tangledLogo from "/media/tangled.svg?url";
import Container from "../components/container";
import { Login, loginState } from "../components/login";
static/bluesky.svg static/media/bluesky.svg
static/logo.png static/media/logo.png
static/tangled.svg static/media/tangled.svg