diff --git a/frontend/src/app/page.tsx b/frontend/src/app/page.tsx index d665f3f..56321a8 100644 --- a/frontend/src/app/page.tsx +++ b/frontend/src/app/page.tsx @@ -53,19 +53,19 @@ export default function Home() {
{/* Hero Section */} -
+
Background -
+
-
+
- @@ -102,7 +102,7 @@ export default function Home() {
{/* Search Section */} -
+
@@ -110,7 +110,7 @@ export default function Home() { {/* Latest Jobs Section */}
-
+

{t("home.featuredJobs.title")} @@ -140,7 +140,7 @@ export default function Home() {
{mockJobs.slice(0, 8).map((job, index) => ( -
+
))} @@ -151,13 +151,13 @@ export default function Home() { {/* More Jobs Section */}
-
+

{t("home.moreJobs.title")}

- @@ -173,7 +173,7 @@ export default function Home() { {/* Bottom CTA Section */}
-
+

@@ -183,7 +183,7 @@ export default function Home() { {t("home.cta.subtitle")}

- diff --git a/frontend/src/components/home-search.tsx b/frontend/src/components/home-search.tsx index 89d56a5..e83b3d0 100644 --- a/frontend/src/components/home-search.tsx +++ b/frontend/src/components/home-search.tsx @@ -1,7 +1,7 @@ "use client" import { useState } from "react" -import { Search, MapPin, DollarSign, Briefcase } from "lucide-react" +import { Search } from "lucide-react" import { Button } from "@/components/ui/button" import { Input } from "@/components/ui/input" import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select" @@ -29,7 +29,7 @@ export function HomeSearch() { } return ( -
+
@@ -42,7 +42,7 @@ export function HomeSearch() {
-
+
{/* Contract Type */}
@@ -102,10 +102,10 @@ export function HomeSearch() {
{/* Search Button */} -
+
- + {/* Job Meta Information */} {/* Job Meta Information */}
@@ -163,7 +163,7 @@ export function JobCard({ job, isApplied, applicationStatus }: JobCardProps) { {getTypeLabel(job.type)} @@ -178,8 +178,8 @@ export function JobCard({ job, isApplied, applicationStatus }: JobCardProps) {
{/* Job Description Preview */} -
-

{job.description}

+
+

{job.description}

{/* Skills/Requirements Preview */} @@ -202,21 +202,21 @@ export function JobCard({ job, isApplied, applicationStatus }: JobCardProps) { )} {/* Time Posted */} -
+
{formatTimeAgo(job.postedAt)}
- +
- {isApplied ? ( - ) : ( - + )}