Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,17 @@
gap: 1rem;
margin: 1.25rem 0;
}
/* Plaza has four panels where the signer has three. Four across is too narrow
to read on a laptop, so they go two-by-two until the viewport can hold a row
of four, and the shared three-column rule above is left alone. */
.zn-shots-four {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 1100px) {
.zn-shots-four {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
}
.zn-shots img {
width: 100%;
height: auto;
Expand Down
3 changes: 2 additions & 1 deletion content/plaza.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@ and reconciles with relays behind you.

## What it looks like

<div className="zn-shots">
<div className="zn-shots zn-shots-four">
<img src="/plaza/panel-feed.jpg" alt="The feed is a local query: it renders from disk, so it is there before the network is" />
<img src="/plaza/panel-profile.jpg" alt="Everyone resolved: names, faces and verification, straight from the local store" />
<img src="/plaza/panel-thread.jpg" alt="Conversations in full: replies nest where they belong, reconciled in the background" />
<img src="/plaza/panel-places.jpg" alt="Places you enter: a link opens somebody else's relays and people, and yours stay where they are" />
</div>

<p className="zn-shot-note">
Expand Down
Binary file modified public/plaza/hero.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/plaza/panel-feed.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/plaza/panel-places.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/plaza/panel-profile.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/plaza/panel-thread.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading