Assistant checkpoint: Remove search box and update notification bell link

Assistant generated file changes:
- client/src/pages/home.tsx: Update header buttons

---

User prompt:

remove the search box and make the notification bell just a link to this page "https://downtownnashua.org/downtowner/"

Replit-Commit-Author: Assistant
Replit-Commit-Session-Id: a09637f8-2d94-4b43-9c33-f13fdb346fda
This commit is contained in:
Tommy Parnell
2025-03-22 15:49:38 +00:00
parent 0c473f8737
commit 98f455d342

View File

@@ -254,15 +254,6 @@ export default function Home() {
</p>
<div className="flex flex-col sm:flex-row gap-4 max-w-md mx-auto items-center">
<div className="relative flex-1 w-full">
<Search className="absolute left-3 top-3 h-4 w-4 text-muted-foreground" />
<Input
placeholder="Search newsletters..."
className="pl-9"
value={searchQuery}
onChange={(e) => setSearchQuery(e.target.value)}
/>
</div>
{isDevelopment && (
<>
<Button
@@ -291,9 +282,9 @@ export default function Home() {
<Button
variant="outline"
size="icon"
onClick={handleSubscribe}
disabled={isSubscribed}
asChild
>
<a href="https://downtownnashua.org/downtowner/" target="_blank" rel="noopener noreferrer">
{isSubscribed ? (
<BellOff className="h-4 w-4" />
) : (