Merge version_1 into main #3

Merged
bender merged 5 commits from version_1 into main 2026-03-10 15:32:25 +00:00
5 changed files with 81 additions and 42 deletions

View File

@@ -49,42 +49,42 @@ export default function AboutPage() {
id: "1",
title: "Advanced Worker Search",
tags: ["Search", "Filter by Skills"],
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-colleagues-laughing_23-2149006884.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-colleagues-laughing_23-2149006884.jpg?_wi=4",
imageAlt: "Worker search platform",
},
{
id: "2",
title: "Skill Level Categories",
tags: ["Basic to Advanced", "Verified Profiles"],
imageSrc: "http://img.b2bpic.net/free-photo/people-working-power-saving-solutions-together_23-2148820197.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/people-working-power-saving-solutions-together_23-2148820197.jpg?_wi=4",
imageAlt: "Worker skill levels",
},
{
id: "3",
title: "City-Based Matching",
tags: ["Local Workers", "Geographic Search"],
imageSrc: "http://img.b2bpic.net/free-photo/close-up-north-america-map-pinpoint_23-2148232460.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-north-america-map-pinpoint_23-2148232460.jpg?_wi=3",
imageAlt: "City locations in Maharashtra",
},
{
id: "4",
title: "Worker Verification",
tags: ["Trusted Profiles", "Background Check"],
imageSrc: "http://img.b2bpic.net/free-photo/executive-with-helmet-staring-through-window_1098-570.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/executive-with-helmet-staring-through-window_1098-570.jpg?_wi=4",
imageAlt: "Verified workers",
},
{
id: "5",
title: "Easy Job Posting",
tags: ["Post Quickly", "Reach Workers"],
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-wearing-helmet-work_23-2148921380.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-wearing-helmet-work_23-2148921380.jpg?_wi=4",
imageAlt: "Diverse workers in Maharashtra",
},
{
id: "6",
title: "Direct Communication",
tags: ["Chat & Connect", "Instant Messages"],
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-colleagues-laughing_23-2149006884.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-colleagues-laughing_23-2149006884.jpg?_wi=5",
imageAlt: "Worker communication platform",
},
]}

View File

@@ -49,28 +49,28 @@ export default function CitiesPage() {
id: "1",
name: "Mumbai Workers",
price: "Find Jobs",
imageSrc: "http://img.b2bpic.net/free-photo/chicago-city-downtown_649448-4241.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/chicago-city-downtown_649448-4241.jpg?_wi=4",
imageAlt: "Mumbai city skyline Maharashtra",
},
{
id: "2",
name: "Pune Workers",
price: "Find Jobs",
imageSrc: "http://img.b2bpic.net/free-photo/businesswomen-drinking-coffee-working-with-papers_74855-4968.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/businesswomen-drinking-coffee-working-with-papers_74855-4968.jpg?_wi=4",
imageAlt: "Pune city Maharashtra India",
},
{
id: "3",
name: "Nagpur Workers",
price: "Find Jobs",
imageSrc: "http://img.b2bpic.net/free-photo/reforestation-done-by-voluntary-group_23-2149500833.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/reforestation-done-by-voluntary-group_23-2149500833.jpg?_wi=3",
imageAlt: "Nagpur city Maharashtra orange",
},
{
id: "4",
name: "Aurangabad Workers",
price: "Find Jobs",
imageSrc: "http://img.b2bpic.net/free-photo/worker-protesting-working-rights_23-2151546416.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/worker-protesting-working-rights_23-2151546416.jpg?_wi=3",
imageAlt: "Aurangabad Maharashtra historic city",
},
]}

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Nunito_Sans } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const nunitoSans = Nunito_Sans({
variable: "--font-nunito-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Find Worker - Job Marketplace in Maharashtra",
description: "Connect with skilled workers at basic to advanced levels across Maharashtra cities. Post jobs, find workers, and hire verified professionals.",
keywords: "workers Maharashtra, job marketplace, employment, skilled workers, Mumbai jobs, Pune jobs, Nagpur jobs",
metadataBase: new URL("https://findworker.example.com"),
alternates: {
canonical: "https://findworker.example.com",
},
openGraph: {
title: "Find Worker - Job Marketplace in Maharashtra",
description: "Connect with skilled workers across Maharashtra. Find jobs or post opportunities in your city.",
url: "https://findworker.example.com",
siteName: "FindWorker",
images: [
{
url: "http://img.b2bpic.net/free-photo/medium-shot-man-wearing-helmet-work_23-2148921380.jpg",
alt: "Find Worker - Job Marketplace",
},
],
type: "website",
},
twitter: {
card: "summary_large_image",
title: "Find Worker - Job Marketplace in Maharashtra",
description: "Connect with skilled workers at basic to advanced levels across Maharashtra.",
images: ["http://img.b2bpic.net/free-photo/medium-shot-man-wearing-helmet-work_23-2148921380.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${nunitoSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -79,37 +79,37 @@ export default function HomePage() {
mediaItems={[
{
imageSrc:
"http://img.b2bpic.net/free-photo/medium-shot-man-wearing-helmet-work_23-2148921380.jpg",
"http://img.b2bpic.net/free-photo/medium-shot-man-wearing-helmet-work_23-2148921380.jpg?_wi=1",
imageAlt: "Diverse workers in Maharashtra",
},
{
imageSrc:
"http://img.b2bpic.net/free-photo/medium-shot-colleagues-laughing_23-2149006884.jpg",
"http://img.b2bpic.net/free-photo/medium-shot-colleagues-laughing_23-2149006884.jpg?_wi=1",
imageAlt: "Worker search platform",
},
{
imageSrc:
"http://img.b2bpic.net/free-photo/people-working-power-saving-solutions-together_23-2148820197.jpg",
"http://img.b2bpic.net/free-photo/people-working-power-saving-solutions-together_23-2148820197.jpg?_wi=1",
imageAlt: "Worker skill levels",
},
{
imageSrc:
"http://img.b2bpic.net/free-photo/close-up-north-america-map-pinpoint_23-2148232460.jpg",
"http://img.b2bpic.net/free-photo/close-up-north-america-map-pinpoint_23-2148232460.jpg?_wi=1",
imageAlt: "City locations in Maharashtra",
},
{
imageSrc:
"http://img.b2bpic.net/free-photo/executive-with-helmet-staring-through-window_1098-570.jpg",
"http://img.b2bpic.net/free-photo/executive-with-helmet-staring-through-window_1098-570.jpg?_wi=1",
imageAlt: "Verified workers",
},
{
imageSrc:
"http://img.b2bpic.net/free-photo/chicago-city-downtown_649448-4241.jpg",
"http://img.b2bpic.net/free-photo/chicago-city-downtown_649448-4241.jpg?_wi=1",
imageAlt: "Mumbai job opportunities",
},
{
imageSrc:
"http://img.b2bpic.net/free-photo/businesswomen-drinking-coffee-working-with-papers_74855-4968.jpg",
"http://img.b2bpic.net/free-photo/businesswomen-drinking-coffee-working-with-papers_74855-4968.jpg?_wi=1",
imageAlt: "Pune employment market",
},
]}
@@ -128,7 +128,7 @@ export default function HomePage() {
title: "Advanced Worker Search",
tags: ["Search", "Filter by Skills"],
imageSrc:
"http://img.b2bpic.net/free-photo/medium-shot-colleagues-laughing_23-2149006884.jpg",
"http://img.b2bpic.net/free-photo/medium-shot-colleagues-laughing_23-2149006884.jpg?_wi=2",
imageAlt: "Advanced worker search",
},
{
@@ -136,7 +136,7 @@ export default function HomePage() {
title: "Skill Level Categories",
tags: ["Basic to Advanced", "Verified Profiles"],
imageSrc:
"http://img.b2bpic.net/free-photo/people-working-power-saving-solutions-together_23-2148820197.jpg",
"http://img.b2bpic.net/free-photo/people-working-power-saving-solutions-together_23-2148820197.jpg?_wi=2",
imageAlt: "Skill level categories",
},
{
@@ -144,7 +144,7 @@ export default function HomePage() {
title: "City-Based Matching",
tags: ["Local Workers", "Geographic Search"],
imageSrc:
"http://img.b2bpic.net/free-photo/close-up-north-america-map-pinpoint_23-2148232460.jpg",
"http://img.b2bpic.net/free-photo/close-up-north-america-map-pinpoint_23-2148232460.jpg?_wi=2",
imageAlt: "City-based matching",
},
{
@@ -152,7 +152,7 @@ export default function HomePage() {
title: "Worker Verification",
tags: ["Trusted Profiles", "Background Check"],
imageSrc:
"http://img.b2bpic.net/free-photo/executive-with-helmet-staring-through-window_1098-570.jpg",
"http://img.b2bpic.net/free-photo/executive-with-helmet-staring-through-window_1098-570.jpg?_wi=2",
imageAlt: "Worker verification",
},
{
@@ -160,7 +160,7 @@ export default function HomePage() {
title: "Easy Job Posting",
tags: ["Post Quickly", "Reach Workers"],
imageSrc:
"http://img.b2bpic.net/free-photo/medium-shot-man-wearing-helmet-work_23-2148921380.jpg",
"http://img.b2bpic.net/free-photo/medium-shot-man-wearing-helmet-work_23-2148921380.jpg?_wi=2",
imageAlt: "Easy job posting",
},
{
@@ -168,7 +168,7 @@ export default function HomePage() {
title: "Direct Communication",
tags: ["Chat & Connect", "Instant Messages"],
imageSrc:
"http://img.b2bpic.net/free-photo/medium-shot-colleagues-laughing_23-2149006884.jpg",
"http://img.b2bpic.net/free-photo/medium-shot-colleagues-laughing_23-2149006884.jpg?_wi=3",
imageAlt: "Direct communication",
},
]}
@@ -190,7 +190,7 @@ export default function HomePage() {
name: "Mumbai Workers",
price: "Find Jobs",
imageSrc:
"http://img.b2bpic.net/free-photo/chicago-city-downtown_649448-4241.jpg",
"http://img.b2bpic.net/free-photo/chicago-city-downtown_649448-4241.jpg?_wi=2",
imageAlt: "Mumbai city",
},
{
@@ -198,7 +198,7 @@ export default function HomePage() {
name: "Pune Workers",
price: "Find Jobs",
imageSrc:
"http://img.b2bpic.net/free-photo/businesswomen-drinking-coffee-working-with-papers_74855-4968.jpg",
"http://img.b2bpic.net/free-photo/businesswomen-drinking-coffee-working-with-papers_74855-4968.jpg?_wi=2",
imageAlt: "Pune city",
},
{
@@ -206,7 +206,7 @@ export default function HomePage() {
name: "Nagpur Workers",
price: "Find Jobs",
imageSrc:
"http://img.b2bpic.net/free-photo/reforestation-done-by-voluntary-group_23-2149500833.jpg",
"http://img.b2bpic.net/free-photo/reforestation-done-by-voluntary-group_23-2149500833.jpg?_wi=1",
imageAlt: "Nagpur city",
},
{
@@ -214,7 +214,7 @@ export default function HomePage() {
name: "Aurangabad Workers",
price: "Find Jobs",
imageSrc:
"http://img.b2bpic.net/free-photo/worker-protesting-working-rights_23-2151546416.jpg",
"http://img.b2bpic.net/free-photo/worker-protesting-working-rights_23-2151546416.jpg?_wi=1",
imageAlt: "Aurangabad city",
},
]}

View File

@@ -85,7 +85,7 @@ export default function WorkersPage() {
title: "Specialized Professionals",
tags: ["Certified", "High Expertise"],
imageSrc:
"http://img.b2bpic.net/free-photo/medium-shot-man-wearing-helmet-work_23-2148921380.jpg",
"http://img.b2bpic.net/free-photo/medium-shot-man-wearing-helmet-work_23-2148921380.jpg?_wi=3",
imageAlt: "Specialized professionals",
},
{
@@ -93,7 +93,7 @@ export default function WorkersPage() {
title: "Team Leaders",
tags: ["Management", "Project Supervision"],
imageSrc:
"http://img.b2bpic.net/free-photo/people-working-power-saving-solutions-together_23-2148820197.jpg",
"http://img.b2bpic.net/free-photo/people-working-power-saving-solutions-together_23-2148820197.jpg?_wi=3",
imageAlt: "Team leaders",
},
{
@@ -101,7 +101,7 @@ export default function WorkersPage() {
title: "Verified Experts",
tags: ["Credentials", "Background Checked"],
imageSrc:
"http://img.b2bpic.net/free-photo/executive-with-helmet-staring-through-window_1098-570.jpg",
"http://img.b2bpic.net/free-photo/executive-with-helmet-staring-through-window_1098-570.jpg?_wi=3",
imageAlt: "Verified experts",
},
]}
@@ -123,7 +123,7 @@ export default function WorkersPage() {
name: "Mumbai Workers",
price: "2,500+ Workers",
imageSrc:
"http://img.b2bpic.net/free-photo/chicago-city-downtown_649448-4241.jpg",
"http://img.b2bpic.net/free-photo/chicago-city-downtown_649448-4241.jpg?_wi=3",
imageAlt: "Mumbai city",
},
{
@@ -131,7 +131,7 @@ export default function WorkersPage() {
name: "Pune Workers",
price: "1,800+ Workers",
imageSrc:
"http://img.b2bpic.net/free-photo/businesswomen-drinking-coffee-working-with-papers_74855-4968.jpg",
"http://img.b2bpic.net/free-photo/businesswomen-drinking-coffee-working-with-papers_74855-4968.jpg?_wi=3",
imageAlt: "Pune city",
},
{
@@ -139,7 +139,7 @@ export default function WorkersPage() {
name: "Nagpur Workers",
price: "1,200+ Workers",
imageSrc:
"http://img.b2bpic.net/free-photo/reforestation-done-by-voluntary-group_23-2149500833.jpg",
"http://img.b2bpic.net/free-photo/reforestation-done-by-voluntary-group_23-2149500833.jpg?_wi=2",
imageAlt: "Nagpur city",
},
{
@@ -147,7 +147,7 @@ export default function WorkersPage() {
name: "Aurangabad Workers",
price: "800+ Workers",
imageSrc:
"http://img.b2bpic.net/free-photo/worker-protesting-working-rights_23-2151546416.jpg",
"http://img.b2bpic.net/free-photo/worker-protesting-working-rights_23-2151546416.jpg?_wi=2",
imageAlt: "Aurangabad city",
},
]}