-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(typography): Standardize font sizes across application
- Loading branch information
Showing
10 changed files
with
149 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,34 @@ | ||
import React from "react"; | ||
import P from './P/P' | ||
import Link from "next/link"; | ||
|
||
const Hero = () => { | ||
return ( | ||
<div className="grid place-items-center gap-6 p-6"> | ||
<div className="grid justify-center items-center place-items-center gap-4"> | ||
<P size="h4" classname="font-bold text-[#282828]">Own Land With Confidence</P> | ||
<P size="h4" classname="font-bold text-[#282828]">Track, Verify, Transfer</P> | ||
<P size="h4" classname="font-bold text-[#282828] text-2xl"> | ||
Own Land With Confidence | ||
</P> | ||
<P size="h4" classname="font-bold text-[#282828] text-2xl"> | ||
Track, Verify, Transfer | ||
</P> | ||
</div> | ||
<div className="flex gap-4"> | ||
<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> | ||
<Link | ||
href='/signin' | ||
className="px-12 py-[0.65rem] text-white rounded text-sm bg-[#6364d5]" | ||
> | ||
Sign In | ||
</Link> | ||
<Link | ||
href='/signup' | ||
className="bg-[#828282] px-12 py-[0.65rem] text-white rounded text-sm" | ||
> | ||
Sign Up | ||
</Link> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Hero; | ||
export default Hero; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.