Skip to content

Commit

Permalink
added example contacts
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephen-Gordon committed Feb 13, 2024
1 parent 4c8fb2c commit 9701c27
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/app/@auth/(.)search/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,34 @@ export default function Page() {
<button className='bg-purple w-full rounded p-4'>Go</button>
</Link>
</div>

<div className='p-4'>
<div className='text-lg text-gray-300'>Favorites</div>
<div className='mb-4 flex content-center justify-between text-base'>
<div className='flex items-center'>
<div className='relative grid items-center justify-center'>
<div className='h-12 w-12 rounded-full bg-gradient-to-r from-cyan-500 to-blue-500 '>
{/* Circle */}
</div>
</div>
<div className='ml-2 text-gray-300'>John</div>
</div>

{/* {transaction.blockNum} */}
</div>
<div className='mb-4 flex content-center justify-between text-base'>
<div className='flex items-center'>
<div className='relative grid items-center justify-center'>
<div className='h-12 w-12 rounded-full bg-gradient-to-r from-pink-500 to-orange-500 '>
{/* Circle */}
</div>
</div>
<div className='ml-2 text-gray-300'>Joe</div>
</div>

{/* {transaction.blockNum} */}
</div>
</div>
</div>
</>
);
Expand Down
2 changes: 2 additions & 0 deletions todo.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@
# add redux login context

# get kernal from redux

# add camera scanner

0 comments on commit 9701c27

Please sign in to comment.