Skip to content

Commit

Permalink
refactor: user page gradient
Browse files Browse the repository at this point in the history
  • Loading branch information
TeeGoood committed Mar 26, 2024
1 parent e6a1d3c commit a8fbce0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion apps/web/src/app/user/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ import Image from 'next/image'

const User = () => {
return (
<div className='bg-gradient-to-b from-cu-secondary via-cu-primary via-tu-primary to-tu-secondary w-screen h-full font-semibold p-10'>
<div
className='font-semibold p-10'
style={
{ background: 'linear-gradient(to bottom, #F1678C, #EE457B, #ED1C24, #FBAF44)' }
}
>
<div className='text-white flex flex-col justify-between w-fit mx-auto gap-6'>
<div className='flex flex-col items-center gap'>
<Image
Expand Down

0 comments on commit a8fbce0

Please sign in to comment.