Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
melnikga committed Dec 2, 2024
1 parent 74ccd55 commit b3c820b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
6 changes: 3 additions & 3 deletions landing_page/src/app/components/Hero.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";
import Button from "./Button/Button";
import P from './P/P'
import Link from "next/link";
const Hero = () => {
return (
<div className="grid place-items-center gap-6 p-6">
Expand All @@ -9,8 +9,8 @@ const Hero = () => {
<P size="h4" classname="font-bold text-[#282828]">Track, Verify, Transfer</P>
</div>
<div className="flex gap-4">
<Button size="full">Sign In</Button>
<Button variant="gray" size="full">Sign Up</Button>
<Link href='/signin' className="px-12 py-[0.65rem] text-white rounded text-xs bg-[#6364d5]">Sign In</Link>
<Link href='/signup' className="bg-[#828282] px-12 py-[0.65rem] text-white rounded text-xs" >Sign Up</Link>
</div>
</div>
);
Expand Down
5 changes: 0 additions & 5 deletions landing_page/src/app/signin/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,6 @@ export default function LoginPage() {
</button>
}
/>
<Input
type="text"
placeholder="Enter Email / Phone No"
/>

<div className="text-xs font-[500]">
<span className="text-[#797979]">Don&apos;t have an account yet? </span>
<a href="/signup" className="text-[#000000]">
Expand Down

0 comments on commit b3c820b

Please sign in to comment.