| Server IP : 10.200.247.200 / Your IP : 216.73.217.19 Web Server : Apache System : Linux synergy-usa-sites 6.8.0-138-generic #138-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 31 22:41:49 UTC 2026 x86_64 User : jeremy ( 1001) PHP Version : 8.4.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/react_apps_dev/lovable-project-08290a92/src/pages/ |
Upload File : |
import { Search as SearchIcon } from "lucide-react";
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
import { Input } from "@/components/ui/input";
import { Button } from "@/components/ui/button";
const Search = () => {
return (
<div className="max-w-6xl mx-auto">
<div className="flex items-center gap-3 mb-6">
<SearchIcon className="h-8 w-8 text-primary" />
<h1 className="text-3xl font-bold">Search Funding Applications</h1>
</div>
<Card className="mb-6">
<CardHeader>
<CardTitle>Find Your Perfect Grant</CardTitle>
<CardDescription>
Search through thousands of funding opportunities
</CardDescription>
</CardHeader>
<CardContent>
<div className="flex gap-4">
<Input
placeholder="Enter keywords, categories, or funding amounts..."
className="flex-1"
/>
<Button>Search</Button>
</div>
</CardContent>
</Card>
<Card>
<CardContent className="pt-6">
<p className="text-muted-foreground">
Use our advanced search functionality to find funding opportunities that match your specific needs.
Filter by category, amount, deadline, and eligibility requirements.
</p>
</CardContent>
</Card>
</div>
);
};
export default Search;