Skip to content

Commit

Permalink
updating certain frontend elements (#33)
Browse files Browse the repository at this point in the history
1. Added another favicon line for cross browser compatibility 
2. Updated certain descriptions on homepage
3. Changed deploy form placeholders to reflect Starknet
  • Loading branch information
Pjewels authored Dec 13, 2023
1 parent a11c51c commit 72abcf8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
7 changes: 4 additions & 3 deletions frontend/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />


<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" />
<link rel="icon" type="image/x-icon" href="%PUBLIC_URL%/favicon.ico">
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
Expand All @@ -30,7 +31,7 @@
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">

<title>Unruggable interface</title>

<style>
@supports (font-variation-settings: normal) {
* {
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/pages/Home/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function HomePage() {
</Column>

<Column as="article" className={styles.firstArticle}>
<Text.HeadlineMedium>The framework to build safer memecoins</Text.HeadlineMedium>
<Text.HeadlineMedium>The pioneer framework to build safer memecoins</Text.HeadlineMedium>
<Row gap="16">
<Link to="/launch">
<PrimaryButton className={styles.firstArticleButton}>Launch</PrimaryButton>
Expand All @@ -33,12 +33,12 @@ export default function HomePage() {
<Column as="article" className={styles.secondArticle}>
<Box>
<Text.Custom color="text2" marginLeft="8" fontWeight="normal" fontSize="18">
Meet Unrrugable Memecoin
Meet Unruggable Meme
</Text.Custom>

<Text.Body>
Tired of getting rugpulled? Introducing Unruggable Memecoin, a project designed with security and
transparency at its core.
transparency at its core. Your go-to platform for deploying safer memecoins on starknet.
<br />
<br />
Our innovative contracts and safeguards ensure a fair and secure experience for all users.
Expand Down
8 changes: 4 additions & 4 deletions frontend/src/pages/Launch/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,23 +68,23 @@ export default function LaunchPage() {
<Column gap="20">
<Column gap="4">
<Text.Body className={styles.inputLabel}>Name</Text.Body>
<Input placeholder="Dogecoin" {...register('name')} />
<Input placeholder="Unruggable" {...register('name')} />
<Box className={styles.errorContainer}>
{errors.name?.message ? <Text.Error>{errors.name.message}</Text.Error> : null}
</Box>
</Column>

<Column gap="4">
<Text.Body className={styles.inputLabel}>Symbol</Text.Body>
<Input placeholder="DOGE" {...register('symbol')} />
<Input placeholder="MEME" {...register('symbol')} />
<Box className={styles.errorContainer}>
{errors.symbol?.message ? <Text.Error>{errors.symbol.message}</Text.Error> : null}
</Box>
</Column>

<Column gap="4">
<Text.Body className={styles.inputLabel}>Initial Recipient Address</Text.Body>
<Input
<Input placeholder="0x000000000000000000"
addon={
<IconButton
disabled={!address}
Expand All @@ -104,7 +104,7 @@ export default function LaunchPage() {

<Column gap="4">
<Text.Body className={styles.inputLabel}>Owner Address</Text.Body>
<Input
<Input placeholder="0x000000000000000000"
addon={
<IconButton disabled={!address} onClick={() => (address ? setValue('ownerAddress', address) : null)}>
<Wallet />
Expand Down

0 comments on commit 72abcf8

Please sign in to comment.