(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 / App.tsx
221 B 14 lines
1import "./App.scss"; 2 3import { Component } from "solid-js"; 4 5const App: Component = () => { 6 return ( 7 <> 8 <img src="static/favicon.png" width="100" /> 9 <h1>Bluroma</h1> 10 </> 11 ); 12}; 13 14export default App;