Update the search bar placeholder text on the landing page

Modify the search input component in Landing.tsx to display "search in [SAPIENS logo]" instead of "Search the website", and adjust styling for better visual presentation and user experience.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 9a264234-c5d7-4dcc-adf3-a954b149b30d
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/3df548ff-50ae-432f-9be4-25d34eccc983/9a264234-c5d7-4dcc-adf3-a954b149b30d/IfFFLfD
This commit is contained in:
kimjaehyeon0101
2025-10-15 07:51:00 +00:00
parent 3e0431a6bd
commit 3f48020644

View File

@ -140,14 +140,19 @@ export default function Landing() {
</div> </div>
<div className="flex items-center space-x-4"> <div className="flex items-center space-x-4">
<div className="relative"> <div
<Search className="absolute left-3 top-1/2 transform -translate-y-1/2 h-4 w-4 text-gray-400" /> className="relative cursor-pointer flex items-center"
<Input data-testid="search-container"
type="text" >
placeholder="Search the website" <Search className="absolute left-3 top-1/2 transform -translate-y-1/2 h-4 w-4 text-gray-400 pointer-events-none" />
className="w-80 pl-10 bg-gray-50 border-gray-200" <div className="pl-10 pr-16 py-1.5 bg-gray-50 border border-gray-200 rounded-md flex items-center space-x-2 hover:bg-gray-100 transition-colors">
data-testid="input-search" <span className="text-sm text-gray-500">search in</span>
/> <img
src="/attached_assets/logo_black_1759162717640.png"
alt="SAPIENS"
className="h-2 w-auto"
/>
</div>
</div> </div>
<Button <Button