···11+<img src="meta/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">
22+33+## About
44+55+Bluroma is a client for [Bluesky](https://bsky.social) inspired by the [Pleroma](https://pleroma.social)/[Akkoma](https://akkoma.social) frotnend. Its goals are to provide a customizable experience designed for power users.
66+77+## Build for development
88+99+```sh
1010+bun install
1111+bun dev
1212+```
1313+1414+## Build for production
1515+1616+```sh
1717+bun install
1818+bun run build
1919+```
···11+/* @refresh reload */
22+import { render } from 'solid-js/web';
33+import 'solid-devtools';
44+55+import App from './App';
66+77+const root = document.getElementById('root');
88+99+if (import.meta.env.DEV && !(root instanceof HTMLElement)) {
1010+ throw new Error(
1111+ 'Root element not found. Did you forget to add it to your index.html? Or maybe the id attribute got misspelled?',
1212+ );
1313+}
1414+1515+render(() => <App />, root!);