Skip to content

Commit

Permalink
✨ Design improvements.
Browse files Browse the repository at this point in the history
  • Loading branch information
pheralb committed Jun 12, 2023
1 parent ebada59 commit 89e61b6
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/src/components/hero/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ const Hero = () => {
</h1>
<div className="flex items-center justify-between rounded-md border border-neutral-800 p-2">
<div className="flex items-center space-x-1">
<span>✌️</span>
<p className="cursor-copy text-neutral-300">
<span>📦</span>
<p className="cursor-copy text-neutral-300 font-mono">
{value ?? commands[0].command}
</p>
</div>
Expand Down
16 changes: 16 additions & 0 deletions website/src/components/icons/arrowLeft.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import type { ComponentProps, FC } from "react"

const ArrowLeft: FC<ComponentProps<"svg">> = (props) => (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" {...props}>
<path
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeMiterlimit="10"
strokeWidth="1.5"
d="M10 16l-4-4m0 0l4-4m-4 4h12"
></path>
</svg>
)

export default ArrowLeft

0 comments on commit 89e61b6

Please sign in to comment.