import { Button, Card } from '@/components/base'; import { Clock, Globe } from 'lucide-react'; import Image from 'next/image'; type JobCardProps = { job: { id: number; title: string; company: string; logo: string; location: string; type: string; postedAt: string; }; }; export default function JobCard({ job }: JobCardProps) { return (
{`${job.company}

{job.title}

{job.company}

{job.location}
{job.type}
); }