Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updating certain frontend elements #33

Merged
merged 4 commits into from
Dec 13, 2023
Merged
Show file tree
Hide file tree
Changes from 2 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
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 Memecoins
AbdelStark marked this conversation as resolved.
Show resolved Hide resolved
</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 secure memecoins on starknet.
AbdelStark marked this conversation as resolved.
Show resolved Hide resolved
<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="Starknet" {...register('name')} />
AbdelStark marked this conversation as resolved.
Show resolved Hide resolved
<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="STRK" {...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
Loading