Skip to content

Commit

Permalink
[Background] updated background and colors
Browse files Browse the repository at this point in the history
  • Loading branch information
petermlyon committed Oct 6, 2024
1 parent 72ab48f commit 60e33de
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 18 deletions.
2 changes: 1 addition & 1 deletion packages/nextjs/app/edit/EditDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export const EditDialog = ({ writeFunction, headerText, writeButtonText }: EditD
</div>
<button
style={{
backgroundColor: "#ffffff20",
backgroundColor: "#00000080",
width: "200pt",
height: "50pt",
borderRadius: "10pt",
Expand Down
42 changes: 28 additions & 14 deletions packages/nextjs/app/help/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,27 +9,41 @@ const Edit: NextPage = () => {
display: "flex",
flexDirection: "column",
justifyContent: "flex-start",
width: "80%",
maxWidth: "600pt",
alignItems: "center",
textAlign: "center",
marginLeft: "auto",
marginRight: "auto",
}}
>
<img style={{ width: "400pt" }} src="./chained.png"></img>
<p>
Your Telegram username is never stored by ChainedIn, it is hashed on the client side such that your personal
contact doesn&apos;t end up on the blockchain.
</p>
<p>
Once you&apos;ve added yourself to ChainedIn, click the Telegram links to connect to the Telegram bot. You can
log in with your ChainedIn username - no password required.
</p>
<p>
You can then initiate chats with other ChainedIn users via /chat. All ChainedIn chats will occur inside the
ChainedIn bot chat, to get messages to a specific user you must reply to a message you have received from them,
or to the /chat initiation message.
</p>
<div
style={{
flexDirection: "column",
borderRadius: "50pt",
padding: "50pt",
marginTop: "50pt",
fontSize: "16pt",
backgroundColor: "#0000077",
justifyContent: "center",
height: "100%",
}}
>
<p>
Your Telegram ID is never stored by ChainedIn, it is hashed on the client side such that your personal contact
doesn&apos;t end up being public (on the blockchain).
</p>
<p>
Once you&apos;ve added yourself to ChainedIn, you can chat with other users. Click the Telegram link on each
business card to connect to the Telegram bot. You can log in with your ChainedIn username - no password
required.
</p>
<p>
You can then initiate chats with other ChainedIn users via /chat. All ChainedIn chats will occur inside the
ChainedIn bot chat, to get messages to a specific user you must reply to a message you have received from
them, or to the /chat initiation message.
</p>
</div>
</div>
);
};
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/app/setup/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const Edit: NextPage = () => {
</p>
<button
style={{
backgroundColor: "#ffffff20",
backgroundColor: "#00000080",
width: "200pt",
height: "50pt",
borderRadius: "10pt",
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/components/edit/EditDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ export const EditDialog = ({ writeFunction, headerText, writeButtonText }: EditD
</div>
<button
style={{
backgroundColor: "#ffffff20",
backgroundColor: "#00000080",
width: "200pt",
height: "50pt",
borderRadius: "10pt",
Expand Down
Binary file removed packages/nextjs/public/bg.jpg
Binary file not shown.
Binary file added packages/nextjs/public/bg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion packages/nextjs/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@


body {
background-image: url("/bg.jpg");
background-image: url("/bg.png");
background-size: cover;
min-height: 100vh;
}
Expand Down

0 comments on commit 60e33de

Please sign in to comment.