| 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 { Briefcase } from "lucide-react";
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
const Business = () => {
return (
<div className="max-w-6xl mx-auto">
<div className="flex items-center gap-3 mb-6">
<Briefcase className="h-8 w-8 text-primary" />
<h1 className="text-3xl font-bold">Business Funding</h1>
</div>
<Card>
<CardHeader>
<CardTitle>Business Grant Opportunities</CardTitle>
<CardDescription>
Funding solutions for small businesses, startups, and entrepreneurs
</CardDescription>
</CardHeader>
<CardContent>
<p className="text-muted-foreground mb-4">
Discover funding opportunities specifically designed for business development,
expansion, and innovation. From startup grants to established business funding.
</p>
<div className="grid md:grid-cols-2 gap-4">
<div className="p-4 border rounded-lg">
<h3 className="font-semibold mb-2">Small Business Grants</h3>
<p className="text-sm text-muted-foreground">
Federal and state grants for small business development
</p>
</div>
<div className="p-4 border rounded-lg">
<h3 className="font-semibold mb-2">Startup Funding</h3>
<p className="text-sm text-muted-foreground">
Seed funding and early-stage business grants
</p>
</div>
<div className="p-4 border rounded-lg">
<h3 className="font-semibold mb-2">Innovation Grants</h3>
<p className="text-sm text-muted-foreground">
Funding for research, development, and innovation
</p>
</div>
<div className="p-4 border rounded-lg">
<h3 className="font-semibold mb-2">Expansion Capital</h3>
<p className="text-sm text-muted-foreground">
Grants for business growth and expansion
</p>
</div>
</div>
</CardContent>
</Card>
</div>
);
};
export default Business;