Skip to content

Commit

Permalink
Merge pull request #32 from RedDuck-Software/fix/ui-improvemeents-15.…
Browse files Browse the repository at this point in the history
…01-25

feat: improvements
  • Loading branch information
NikiTaysRD authored Jan 15, 2025
2 parents 3907960 + cd94055 commit 33359ff
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 4 deletions.
Binary file removed public/images/libra-card.png
Binary file not shown.
Binary file added public/images/moon-card.png
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/images/star-card.png
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/images/sun-card.png
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/images/tarot-game/shuffle-deck.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions src/components/common/About/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -196,9 +196,9 @@ export const AboutSection = () => {
</p>

<div className="flex w-full max-w-full flex-row justify-between overflow-x-auto *:h-[248px] *:w-[173px] max-md:gap-6 2xl:*:h-[310px] 2xl:*:w-[217px]">
<img src="/images/libra-card.png" alt="tarot1" />
<img src="/images/libra-card.png" alt="tarot2" />
<img src="/images/libra-card.png" alt="tarot3" />
<img src="/images/star-card.png" alt="tarot1" />
<img src="/images/moon-card.png" alt="tarot2" />
<img src="/images/sun-card.png" alt="tarot3" />
</div>

<Accordion type="single" collapsible>
Expand Down Expand Up @@ -258,7 +258,7 @@ const AboutBlock = () => (

const HowToUseBlock = () => (
<div className="space-y-8">
<p className="text-[40px] font-light leading-[48px] md:text-[60px] md:leading-[72px]">How to Use the Product</p>
<p className="text-[40px] font-light leading-[48px] md:text-[60px] md:leading-[72px]">How to Use</p>

{INSTRUCTIONS.map((e, idx) => (
<p className="text-[18px] font-light leading-[25px] md:text-[20px] md:leading-[28px]" key={idx}>
Expand Down
2 changes: 2 additions & 0 deletions src/lib/solana/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import { env } from '@/env';
export const network =
env.VITE_PUBLIC_NETWORKS_MODE === 'mainnet' ? WalletAdapterNetwork.Mainnet : WalletAdapterNetwork.Devnet;

console.log('wallets', network);

export const endpoint = env.VITE_PUBLIC_SOLANA_RPC ?? clusterApiUrl(network);

export const wallets = [new PhantomWalletAdapter(), new SolflareWalletAdapter()];
Expand Down

0 comments on commit 33359ff

Please sign in to comment.