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

Build Successs #40

Merged
merged 3 commits into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Build Success
  • Loading branch information
Sanghrakshit12 committed Jun 19, 2024
commit 396659eecf55625ddd54fdf48eac185735eca06c
13 changes: 7 additions & 6 deletions frontend-next/app/trade/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from "react";
import Image from "next/image";
import Link from "next/link";
import TradeNavbar from "../market/TradeNavbar";
import Input from "./inpbox";
Expand All @@ -9,29 +10,29 @@ export default function Trade() {
<TradeNavbar />
<div className="flex flex-col md:flex-row mt-20">
<div className="text-xl text-white font-serif p-10 md:w-1/2 lg:w-1/3">
<h1 className="mb-16 font-semibold text-3xl font-serif">Coins Available </h1>
<h1 className="mb-16 font-semibold text-4xl font-serif">Coins Available </h1>
<Link href={'trade/btc'} className="mb-16 p-3 w-40 bg-[#FCD434] hover:bg-[#C0EA3E] rounded-lg flex items-center justify-center">
<img src="/btc.png" alt="BTC Logo" className="w-9 h-9 mr-2" />
<Image src="/btc.png" alt="BTC Logo" width={20} height={20} className="w-9 h-9 mr-2" />
<h1 className="font-semibold font-serif text-black">BTC</h1>
</Link>

<Link href={'trade/eth'} className="mb-16 p-3 w-40 bg-[#FCD434] hover:bg-[#C0EA3E] rounded-lg flex items-center justify-center">
<img src="/eth.png" alt="ETH Logo" className="w-9 h-9 mr-2" />
<Image src="/eth.png" alt="ETH Logo" width={20} height={20} className="w-9 h-9 mr-2" />
<h1 className="font-semibold font-serif text-black">ETH</h1>
</Link>

<Link href={'trade/sol'} className="mb-16 p-3 w-40 bg-[#FCD434] hover:bg-[#C0EA3E] rounded-lg flex items-center justify-center">
<img src="/sol.png" alt="SOL Logo" className="w-9 h-9 mr-2" />
<Image src="/sol.png" alt="SOL Logo" width={20} height={20} className="w-9 h-9 mr-2" />
<h1 className="font-semibold font-serif text-black">SOL</h1>
</Link>

<Link href={'trade/usdt'} className="mb-16 p-3 w-40 bg-[#FCD434] hover:bg-[#C0EA3E] rounded-lg flex items-center justify-center">
<img src="/usdt.png" alt="USDT Logo" className="w-9 h-9 mr-2" />
<Image src="/usdt.png" alt="USDT Logo" width={20} height={20} className="w-9 h-9 mr-2" />
<h1 className="font-semibold font-serif text-black">USDT</h1>
</Link>

<Link href={'trade/bnb'} className="mb-16 p-3 w-40 bg-[#FCD434] hover:bg-[#C0EA3E] rounded-lg flex items-center justify-center">
<img src="/bnb.png" alt="BNB Logo" className="w-9 h-9 mr-2" />
<Image src="/bnb.png" alt="BNB Logo" width={20} height={20} className="w-9 h-9 mr-2" />
<h1 className="font-semibold font-serif text-black">BNB</h1>
</Link>
</div>
Expand Down
2 changes: 1 addition & 1 deletion frontend-next/app/trade/usdt/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export default function BitcoinCard() {
<div className="mb-2 text-center text-xl font-bold">USDT</div>
<p className="text-center text-base text-gray-700">
Tether is a cryptocurrency stablecoin, launched by the company
Tether Limited Inc. in 2014. As of January 2024, Tether's website
Tether Limited Inc. in 2014. As of January 2024,the website
lists fourteen protocols and blockchains on which Tether has been
minted. Tether has been criticized for a lack of transparency and
verifiability of its claimed fiat reserves.
Expand Down