Skip to content

Commit

Permalink
final changes
Browse files Browse the repository at this point in the history
  • Loading branch information
auraticabhi committed May 27, 2024
1 parent 959d8cc commit 3ce9861
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions app/event-details/[eventTitle]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -321,10 +321,10 @@ const EventDetailsPage = ({ params: { eventTitle } }: Props) => {


return (
<div className=' grid md:grid-cols-2 lg:grid-cols-9 gap-y-4 md:gap-x-6 pb-6 font-jakarta mt-3'>
<div className=' lg:grid md:grid-cols-2 lg:grid-cols-9 gap-y-4 md:gap-x-6 pb-6 font-jakarta mt-3'>
<div className=' md:col-span-6 col-span-2 order-first '>

<div className=' w-full bg-white dark:bg-[#262626] rounded-2xl shadow-[0px_0px_0px_1px_rgba(8,112,184,0.06),0px_1px_1px_-0.5px_rgba(8,112,184,0.06),0px_3px_3px_-1.5px_rgba(8,112,184,0.06),_0px_6px_6px_-3px_rgba(8,112,184,0.06),0px_12px_12px_-6px_rgba(8,112,184,0.06),0px_24px_24px_-12px_rgba(8,112,184,0.06) break-words overflow-hidden mt-[4rem] font-dmsans p-10'>
<div className=' w-full bg-white dark:bg-[#262626] rounded-2xl shadow-[0px_0px_0px_1px_rgba(8,112,184,0.06),0px_1px_1px_-0.5px_rgba(8,112,184,0.06),0px_3px_3px_-1.5px_rgba(8,112,184,0.06),_0px_6px_6px_-3px_rgba(8,112,184,0.06),0px_12px_12px_-6px_rgba(8,112,184,0.06),0px_24px_24px_-12px_rgba(8,112,184,0.06) break-words overflow-hidden lg:mt-[4rem] font-dmsans p-10'>
<div className=''>
<div className=''>
{
Expand Down Expand Up @@ -412,7 +412,7 @@ const EventDetailsPage = ({ params: { eventTitle } }: Props) => {
</div>

<div className='p-4 mt-5'>
<div className=' flex gap-4 border border-black rounded-2xl bg-gray-300 p-2'>
<div className=' lg:flex gap-4 border border-black rounded-2xl bg-gray-300 p-2'>
<div className=' text-[20px] font-[500]'>Registration Link :</div>
<a target='_blank' href="#" className=' text-blue-400 underline cursor-pointer text-[20px]'>{eventObject.registrationLink}</a>
</div>
Expand Down Expand Up @@ -487,7 +487,7 @@ const EventDetailsPage = ({ params: { eventTitle } }: Props) => {

<div className="h-fit">

<div className='lg:hidden col-span-3 sticky overflow-hidden h-fit rounded-2xl border border-gray-300 shadow-[0px_0px_0px_1px_rgba(8,112,184,0.06),0px_1px_1px_-0.5px_rgba(8,112,184,0.06),0px_3px_3px_-1.5px_rgba(8,112,184,0.06),_0px_6px_6px_-3px_rgba(8,112,184,0.06),0px_12px_12px_-6px_rgba(8,112,184,0.06),0px_24px_24px_-12px_rgba(8,112,184,0.06)]'>
<div className='lg:hidden col-span-3 mt-3 sticky overflow-hidden h-fit rounded-2xl border border-gray-300 shadow-[0px_0px_0px_1px_rgba(8,112,184,0.06),0px_1px_1px_-0.5px_rgba(8,112,184,0.06),0px_3px_3px_-1.5px_rgba(8,112,184,0.06),_0px_6px_6px_-3px_rgba(8,112,184,0.06),0px_12px_12px_-6px_rgba(8,112,184,0.06),0px_24px_24px_-12px_rgba(8,112,184,0.06)]'>
<Card x-chunk="dashboard-01-chunk-5">
<CardHeader>
<CardTitle className='text-[24px] font-[500]'>Created By</CardTitle>
Expand All @@ -501,13 +501,13 @@ const EventDetailsPage = ({ params: { eventTitle } }: Props) => {
src={userData.profilePic}
width={250}
height={250}
alt='Conference'
alt='Unknown'
className=' w-10 h-10 rounded-full'
/>
</div>
<div className="ml-4 space-y-1">
<p className="text-[17px] font-medium leading-none">{userData.name}</p>
<p className="text-[17px] text-muted-foreground">{userData.email}</p>
<p className="text-[17px] font-medium leading-none">{userData.name?userData.name:"Guest"}</p>
<p className="text-[17px] text-muted-foreground">{userData.email?userData.email:"na"}</p>
</div>
<div className="ml-auto font-medium"></div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion app/events/components/album-artwork.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ export function AlbumArtwork({ post, isProfile = false, handleDelete = () => {}
<h3 className="text-[20px] font-[700] leading-none ml-6 mt-6">{post.title.length>28?post.title.substring(0, 27)+"...":post.title}</h3>
</Link>
{/* <div className="mt-[0.30rem] text-[14px] font-semibold opacity-85">{post.locationOfEvent}</div> */}
<div className="hidden lg:block">
<div className="lg:block">
{
<div className="m-6 text-[14px] text-gray-500 font-[500] flex gap-[25px]"><span className="text-black w-2 mt-[1.5px]"><CalendarDays className="text-xs w-4 h-4"/></span>{dateString}</div>
}
Expand Down

0 comments on commit 3ce9861

Please sign in to comment.