diff --git a/src/components/layout/Footer.jsx b/src/components/layout/Footer.jsx index ccaf392..6416ccf 100644 --- a/src/components/layout/Footer.jsx +++ b/src/components/layout/Footer.jsx @@ -53,15 +53,15 @@ const Footer = () => {
{companyInfo.address}
@@ -70,7 +70,7 @@ const Footer = () => { {/* Quick Links */}We work with businesses across all industries. Contact us to discuss your specific needs.
- Request Consultation - +{industry.name}
diff --git a/src/pages/ServiceDetail.jsx b/src/pages/ServiceDetail.jsx index e7ff563..cba8bbc 100644 --- a/src/pages/ServiceDetail.jsx +++ b/src/pages/ServiceDetail.jsx @@ -1,5 +1,6 @@ import { useParams } from 'react-router-dom' import { services } from '@/data/services' +import { Link } from 'react-router-dom' import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/Card' const ServiceDetail = () => { @@ -13,9 +14,9 @@ const ServiceDetail = () => { @@ -108,14 +109,14 @@ const ServiceDetail = () => {{service.id.replace('-', ' ')}
diff --git a/src/pages/Services.jsx b/src/pages/Services.jsx index c172ce5..192b144 100644 --- a/src/pages/Services.jsx +++ b/src/pages/Services.jsx @@ -1,5 +1,6 @@ import { services } from '@/data/services' import { MessageCircle, Users, LifeBuoy, GraduationCap, Link as LinkIcon, Wifi, Network } from 'lucide-react' +import { Link } from 'react-router-dom' const Services = () => { return ( @@ -51,12 +52,12 @@ const Services = () => { ))} - + Learn moreDon't see exactly what you're looking for? We can help you find the right solution.
- Request Consultation - + diff --git a/src/pages/Support.jsx b/src/pages/Support.jsx index 7eb2704..fe1069e 100644 --- a/src/pages/Support.jsx +++ b/src/pages/Support.jsx @@ -302,7 +302,7 @@ const Support = () => { onChange={handleChange} required placeholder="Please describe your issue in detail..." - className={`w-full rounded-md border bg-background px-3 py-2 text-sm ring-offset-background placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 ${errors.issue ? 'border-red-500 focus-visible:ring-red-500' : ''}`} + className={`w-full rounded-md border bg-background px-3 py-2 text-sm ring-offset-[#F8FAFC] placeholder:text-muted focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-primary-navy focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 ${errors.issue ? 'border-red-500 focus-visible:ring-red-500' : ''}`} rows={5} /> {debouncedErrors.issue && (