Skip to content

Commit

Permalink
problem: no image for githole product
Browse files Browse the repository at this point in the history
  • Loading branch information
gsovereignty committed Feb 13, 2024
1 parent 5a1020b commit e67d40a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 13 deletions.
31 changes: 18 additions & 13 deletions src/routes/products/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
consensusTipState,
mempool,
} from "$lib/stores/nostrocket_state/master_state";
import { Button, Tile } from "carbon-components-svelte";
import { Button, Column, Row, Tile } from "carbon-components-svelte";
import { Rocket } from "carbon-icons-svelte";
import { derived } from "svelte/store";
import CommentUser from "../../components/comments/CommentUser.svelte";
Expand All @@ -23,9 +23,9 @@
throw new Error("event not found");
}
if ($rocket) {
$profiles.get($rocket?.CreatedBy)
$profiles.get($rocket?.CreatedBy);
}
e.zap(1000, undefined, [["e", nostrocketIgnitionEvent]]);
console.log(e);
}
Expand All @@ -45,16 +45,21 @@
</Tile>
{#if $rocket}
<Tile light style="margin-top:2px">
<h3>GitRocket: one push away from world domination</h3>
<p>What you get:</p>
<ul>
<li>A public git repository to use as the home for your project</li>
<li>Use all your existing git tooling and workflow</li>
<li>No passwords, just your nostr identity</li>
<li>Add maintainers simply by publishing their npubs</li>
<li>inter-operability with any NIP34 client</li>
<li>Zero exit costs, migrate to your own server at any time</li>
</ul>
<Row
><Column
><h3>Githole: one push away from world domination</h3>
<p>What you get:</p>
<ul>
<li>A public git repository to use as the home for your project</li>
<li>Use all your existing git tooling and workflow</li>
<li>No passwords, just your nostr identity</li>
<li>Add maintainers simply by publishing their npubs</li>
<li>inter-operability with any NIP34 client</li>
<li>Zero exit costs, migrate to your own server at any time</li>
</ul></Column
><Column><img style="margin:10px" src="/img/r.jpg" width="300px" /></Column></Row
>

<Button
disabled={!e}
on:click={() => {
Expand Down
Binary file added static/img/r.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit e67d40a

Please sign in to comment.