diff --git a/package.json b/package.json index af8702a..0b0f21d 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "queuenorth-website", "private": true, - "version": "0.3.1", + "version": "0.3.2", "type": "module", "scripts": { "dev": "concurrently \"vite\" \"node server/index.js\"", diff --git a/src/pages/Home.jsx b/src/pages/Home.jsx index 343efa7..3aa24b0 100644 --- a/src/pages/Home.jsx +++ b/src/pages/Home.jsx @@ -1,8 +1,13 @@ import { Button } from '@/components/ui/Button' import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/Card' import { services } from '@/data/services' +import { industries } from '@/data/industries' +import { useNavigate } from 'react-router-dom' +import { MapPin } from 'lucide-react' const Home = () => { + const navigate = useNavigate() + return (
{/* Hero Section */} @@ -83,9 +88,9 @@ const Home = () => {

{service.fullDesc}

- +
))} @@ -150,21 +155,16 @@ const Home = () => {

- {[ - { name: 'Healthcare', href: '/industries/healthcare' }, - { name: 'Retail', href: '/industries/retail' }, - { name: 'Manufacturing', href: '/industries/manufacturing' }, - { name: 'Education & Finance', href: '/industries/education-finance' }, - ].map((industry) => ( - + {industries.map((industry) => ( +

{industry.name}

Industry-specific solutions designed to address your unique challenges and requirements.

- +
))} @@ -181,12 +181,9 @@ const Home = () => {

Schedule a free consultation with our communications experts.

- +