diff --git a/src/app.css b/src/app.css index 61f876c..79fee31 100644 --- a/src/app.css +++ b/src/app.css @@ -28,6 +28,11 @@ @apply hover:text-primary-400 dark:hover:text-primary-500 hover:border-primary-400 dark:hover:border-primary-500 hover:bg-gray-200 dark:hover:bg-gray-700; } + /* Images */ + .image-border { + @apply border border-primary-700; + } + /* Card */ div.card-leather { @apply shadow-none text-primary-1000 border-s-4 bg-highlight border-primary-200 has-[:hover]:border-primary-700; diff --git a/src/routes/about/+page.svelte b/src/routes/about/+page.svelte index 611bd2b..a95d36c 100644 --- a/src/routes/about/+page.svelte +++ b/src/routes/about/+page.svelte @@ -1,15 +1,56 @@
About -

Alexandria is an editor and generator for curated publications and will soon also be a reader for long-form articles and wiki pages. - It is produced by the GitCitadel project team.

+

Alexandria is a reader and writer for curated publications (in Asciidoc), and will eventually also support long-form articles (Markdown) and wiki pages (Asciidoc). It is produced by the GitCitadel project team.

Please submit support issues on the project repo page and follow us on GitHub and Geyserfund.

+ +

We are easiest to contact over our Nostr address npub1s3ht77dq4zqnya8vjun5jp3p44pr794ru36d0ltxu65chljw8xjqd975wz.

+ + Overview + +

Alexandria opens up to the landing page, where the user can: login (top-right), select whether to only view the publications hosted on the theforest community relay or add in their own relays, and scroll/search the publications.

+ +

Landing page

+

Relay selection

+ +

There is also the ability to view the publications as a diagram, if you click on "Visualize", and to publish a note (coming soon).

+ +

If you click on a card (which represents a 30040 index event), the associated reading view opens to the publication, and the app pulls all of the section/content events (30041s) listed in the index, in the predefined order, and displays them as a single document.

+ +

Each 30041 section is also a level in the table of contents, which can be accessed from the floating icon top-left in the reading view. This allows for navigation within the publication. (This functionality has been temporarily disabled.)

+ +

ToC icon

+

Table of contents example

+ + Typical use cases + + For e-books +

The most common use for Alexandria is for e-books: both those users have written themselves and those uploaded to Nostr from other sources. The first minor version of the app, Gutenberg, is focused on displaying and producing these publications.

+ +

An example of a book is Jane Eyre

+ +

Jane Eyre, by Charlotte Brontë

+ + For scientific papers +

Alexandria will also display research papers with Asciimath and LaTeX embedding, and the normal advanced formatting options available for Asciidoc. In addition, we will be implementing special citation events, which will serve as an alternative or addition to the normal footnotes.

+ +

Correctly displaying such papers, integrating citations, and allowing them to be reviewed (with kind 1111 comments), and annotated (with highlights) by users, is the focus of the second minor version, Euler.

+ +

Euler will also pioneer the HTTP-based (rather than websocket-based) e-paper compatible version of the web app.

+ +

An example of a research paper is Less Partnering, Less Children, or Both?

+ +

Research paper

+ + For documentation +

Our own team uses the app to document the app, to display our blog entries, as well as to store copies of our most interesting technical specifications.

+ +

Documentation

+
\ No newline at end of file diff --git a/static/screenshots/Documentation.png b/static/screenshots/Documentation.png new file mode 100644 index 0000000..44e665e Binary files /dev/null and b/static/screenshots/Documentation.png differ diff --git a/static/screenshots/JaneEyre.png b/static/screenshots/JaneEyre.png new file mode 100644 index 0000000..46b414c Binary files /dev/null and b/static/screenshots/JaneEyre.png differ diff --git a/static/screenshots/LandingPage.png b/static/screenshots/LandingPage.png new file mode 100644 index 0000000..3d71c2d Binary files /dev/null and b/static/screenshots/LandingPage.png differ diff --git a/static/screenshots/ResearchPaper.png b/static/screenshots/ResearchPaper.png new file mode 100644 index 0000000..ea59473 Binary files /dev/null and b/static/screenshots/ResearchPaper.png differ diff --git a/static/screenshots/TableOfContents.png b/static/screenshots/TableOfContents.png new file mode 100644 index 0000000..a073f88 Binary files /dev/null and b/static/screenshots/TableOfContents.png differ diff --git a/static/screenshots/ToC_icon.png b/static/screenshots/ToC_icon.png new file mode 100644 index 0000000..7a2d12a Binary files /dev/null and b/static/screenshots/ToC_icon.png differ diff --git a/static/screenshots/YourRelays.png b/static/screenshots/YourRelays.png new file mode 100644 index 0000000..18917c1 Binary files /dev/null and b/static/screenshots/YourRelays.png differ