(attempted) pleroma clone for bluesky pl.hexmani.ac
bluesky pleroma social-media
2

Configure Feed

Select the types of activity you want to include in your feed.

bluroma / src / components / navbar.tsx
352 B 18 lines
1import { A } from "@solidjs/router"; 2import { Component } from "solid-js/types/server/rendering.js"; 3 4const Navbar: Component = () => { 5 return ( 6 <> 7 <nav id="nav"> 8 <div class="center-nav"> 9 <A href="/"> 10 <img src="favicon.png" /> 11 </A> 12 </div> 13 </nav> 14 </> 15 ); 16}; 17 18export default Navbar;