- Scene -
-diff --git a/src/features/room-select/ui/RoomPreviewCard.tsx b/src/features/room-select/ui/RoomPreviewCard.tsx index e0703d8..cfb1a61 100644 --- a/src/features/room-select/ui/RoomPreviewCard.tsx +++ b/src/features/room-select/ui/RoomPreviewCard.tsx @@ -29,8 +29,8 @@ export const RoomPreviewCard = ({ className={cn( 'group relative overflow-hidden rounded-3xl border text-left transition-all duration-250 motion-reduce:transition-none', compact - ? 'h-[112px] min-w-[164px] snap-start p-2.5 sm:min-w-0 sm:aspect-[4/3]' - : 'h-[338px] p-3 sm:h-[420px] sm:p-4', + ? 'h-[98px] min-w-[152px] snap-start p-2 sm:min-w-0 sm:aspect-[5/4]' + : 'h-[292px] p-3 sm:h-[334px] sm:p-4 lg:h-[356px]', selected ? cinematic ? 'border-sky-200/44 shadow-[0_0_0_1px_rgba(186,230,253,0.34),0_20px_50px_rgba(2,6,23,0.32)]' @@ -86,14 +86,14 @@ export const RoomPreviewCard = ({ ) : null} {compact ? ( -
{room.name}
{room.vibeLabel}
Selected Space
-{room.description}
diff --git a/src/widgets/app-hub/ui/AppHubWidget.tsx b/src/widgets/app-hub/ui/AppHubWidget.tsx index 203b4a0..c719383 100644 --- a/src/widgets/app-hub/ui/AppHubWidget.tsx +++ b/src/widgets/app-hub/ui/AppHubWidget.tsx @@ -2,7 +2,7 @@ import { useState } from 'react'; import { useRouter } from 'next/navigation'; -import { getRoomCardBackgroundStyle, ROOM_THEMES } from '@/entities/room'; +import { ROOM_THEMES } from '@/entities/room'; import { GOAL_CHIPS, SOUND_PRESETS, @@ -52,7 +52,7 @@ export const AppHubWidget = () => { const router = useRouter(); const { pushToast } = useToast(); const { thoughts, thoughtCount, clearThoughts } = useThoughtInbox(); - const { selectedRoom, selectedRoomId, selectRoom } = useRoomSelection( + const { selectedRoomId, selectRoom } = useRoomSelection( ROOM_THEMES[0].id, ); @@ -108,15 +108,11 @@ export const AppHubWidget = () => {- Scene -
-