Merge version_1 into main #1

Merged
bender merged 5 commits from version_1 into main 2026-03-10 14:35:44 +00:00
5 changed files with 79 additions and 47 deletions

View File

@@ -53,21 +53,21 @@ export default function AboutPage() {
id: "1",
title: "Empowering Workers",
tags: ["Career Growth", "Opportunity"],
imageSrc: "http://img.b2bpic.net/free-photo/explaining-points-new-project_1098-15345.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/explaining-points-new-project_1098-15345.jpg?_wi=3",
imageAlt: "Worker empowerment"
},
{
id: "2",
title: "Supporting Employers",
tags: ["Quality Talent", "Easy Hiring"],
imageSrc: "http://img.b2bpic.net/free-photo/three-women-working-as-architectors-constraction-making-decision-about-plan-building_1157-48459.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/three-women-working-as-architectors-constraction-making-decision-about-plan-building_1157-48459.jpg?_wi=3",
imageAlt: "Employer support"
},
{
id: "3",
title: "Building Trust",
tags: ["Verification", "Transparency"],
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-business-people-conference-room_23-2148911826.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-business-people-conference-room_23-2148911826.jpg?_wi=3",
imageAlt: "Trust building"
}
]}

View File

@@ -53,28 +53,28 @@ export default function CitiesPage() {
id: "1",
name: "Mumbai Workers",
price: "Find Jobs",
imageSrc: "http://img.b2bpic.net/free-photo/group-indian-business-man-suits-sitting-office-cafe-with-laptop-texting-phones-making-photo-coffee_627829-1491.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/group-indian-business-man-suits-sitting-office-cafe-with-laptop-texting-phones-making-photo-coffee_627829-1491.jpg?_wi=3",
imageAlt: "Mumbai city"
},
{
id: "2",
name: "Pune Workers",
price: "Find Jobs",
imageSrc: "http://img.b2bpic.net/free-photo/scenery-sunset-mill-building-greensboro-north-carolina-usa_181624-24794.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/scenery-sunset-mill-building-greensboro-north-carolina-usa_181624-24794.jpg?_wi=3",
imageAlt: "Pune city"
},
{
id: "3",
name: "Nagpur Workers",
price: "Find Jobs",
imageSrc: "http://img.b2bpic.net/free-photo/civil-engineers-work-according-road-conditions-have-barriers_1150-24316.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/civil-engineers-work-according-road-conditions-have-barriers_1150-24316.jpg?_wi=2",
imageAlt: "Nagpur city"
},
{
id: "4",
name: "Aurangabad Workers",
price: "Find Jobs",
imageSrc: "http://img.b2bpic.net/free-photo/women-happily-shopping-buying-consumer-products-customer-day_23-2151623440.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/women-happily-shopping-buying-consumer-products-customer-day_23-2151623440.jpg?_wi=2",
imageAlt: "Aurangabad city"
}
]}
@@ -96,21 +96,21 @@ export default function CitiesPage() {
id: "1",
title: "Complete Worker Profiles",
tags: ["Experience", "Certifications"],
imageSrc: "http://img.b2bpic.net/free-photo/business-woman-pointing-phone_23-2148336922.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/business-woman-pointing-phone_23-2148336922.jpg?_wi=6",
imageAlt: "Worker profiles"
},
{
id: "2",
title: "Verified Local Specialists",
tags: ["Background Checked", "Ratings"],
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-checking-car-report_329181-11798.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-checking-car-report_329181-11798.jpg?_wi=4",
imageAlt: "Verified specialists"
},
{
id: "3",
title: "Quick Response Times",
tags: ["24-Hour Service", "Nearby Workers"],
imageSrc: "http://img.b2bpic.net/free-photo/building-construction-worker-site-with-architect_23-2149124289.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/building-construction-worker-site-with-architect_23-2149124289.jpg?_wi=4",
imageAlt: "Quick response"
}
]}

View File

@@ -1,24 +1,54 @@
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",
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.",
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +57,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 +71,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -57,13 +57,13 @@ export default function HomePage() {
{ text: "Post a Job", href: "https://findworker.example.com/post-job" },
]}
mediaItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/people-taking-part-business-event_23-2149346656.jpg", imageAlt: "Diverse workers in Maharashtra" },
{ imageSrc: "http://img.b2bpic.net/free-photo/business-woman-pointing-phone_23-2148336922.jpg", imageAlt: "Worker search platform" },
{ imageSrc: "http://img.b2bpic.net/free-photo/building-construction-worker-site-with-architect_23-2149124289.jpg", imageAlt: "Worker skill levels" },
{ imageSrc: "http://img.b2bpic.net/free-photo/focused-wisconsin-state-with-magnifying-glass_23-2148232432.jpg", imageAlt: "City locations in Maharashtra" },
{ imageSrc: "http://img.b2bpic.net/free-photo/mechanic-checking-car-report_329181-11798.jpg", imageAlt: "Verified workers" },
{ imageSrc: "http://img.b2bpic.net/free-photo/group-indian-business-man-suits-sitting-office-cafe-with-laptop-texting-phones-making-photo-coffee_627829-1491.jpg", imageAlt: "Mumbai job opportunities" },
{ imageSrc: "http://img.b2bpic.net/free-photo/scenery-sunset-mill-building-greensboro-north-carolina-usa_181624-24794.jpg", imageAlt: "Pune employment market" },
{ imageSrc: "http://img.b2bpic.net/free-photo/people-taking-part-business-event_23-2149346656.jpg?_wi=1", imageAlt: "Diverse workers in Maharashtra" },
{ imageSrc: "http://img.b2bpic.net/free-photo/business-woman-pointing-phone_23-2148336922.jpg?_wi=1", imageAlt: "Worker search platform" },
{ imageSrc: "http://img.b2bpic.net/free-photo/building-construction-worker-site-with-architect_23-2149124289.jpg?_wi=1", imageAlt: "Worker skill levels" },
{ imageSrc: "http://img.b2bpic.net/free-photo/focused-wisconsin-state-with-magnifying-glass_23-2148232432.jpg?_wi=1", imageAlt: "City locations in Maharashtra" },
{ imageSrc: "http://img.b2bpic.net/free-photo/mechanic-checking-car-report_329181-11798.jpg?_wi=1", imageAlt: "Verified workers" },
{ imageSrc: "http://img.b2bpic.net/free-photo/group-indian-business-man-suits-sitting-office-cafe-with-laptop-texting-phones-making-photo-coffee_627829-1491.jpg?_wi=1", imageAlt: "Mumbai job opportunities" },
{ imageSrc: "http://img.b2bpic.net/free-photo/scenery-sunset-mill-building-greensboro-north-carolina-usa_181624-24794.jpg?_wi=1", imageAlt: "Pune employment market" },
]}
/>
</div>
@@ -79,42 +79,42 @@ export default function HomePage() {
id: "1",
title: "Advanced Worker Search",
tags: ["Search", "Filter by Skills"],
imageSrc: "http://img.b2bpic.net/free-photo/business-woman-pointing-phone_23-2148336922.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/business-woman-pointing-phone_23-2148336922.jpg?_wi=2",
imageAlt: "Advanced worker search"
},
{
id: "2",
title: "Skill Level Categories",
tags: ["Basic to Advanced", "Verified Profiles"],
imageSrc: "http://img.b2bpic.net/free-photo/building-construction-worker-site-with-architect_23-2149124289.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/building-construction-worker-site-with-architect_23-2149124289.jpg?_wi=2",
imageAlt: "Skill level categories"
},
{
id: "3",
title: "City-Based Matching",
tags: ["Local Workers", "Geographic Search"],
imageSrc: "http://img.b2bpic.net/free-photo/focused-wisconsin-state-with-magnifying-glass_23-2148232432.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/focused-wisconsin-state-with-magnifying-glass_23-2148232432.jpg?_wi=2",
imageAlt: "City-based matching"
},
{
id: "4",
title: "Worker Verification",
tags: ["Trusted Profiles", "Background Check"],
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-checking-car-report_329181-11798.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-checking-car-report_329181-11798.jpg?_wi=2",
imageAlt: "Worker verification"
},
{
id: "5",
title: "Easy Job Posting",
tags: ["Post Quickly", "Reach Workers"],
imageSrc: "http://img.b2bpic.net/free-photo/people-taking-part-business-event_23-2149346656.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/people-taking-part-business-event_23-2149346656.jpg?_wi=2",
imageAlt: "Easy job posting"
},
{
id: "6",
title: "Direct Communication",
tags: ["Chat & Connect", "Instant Messages"],
imageSrc: "http://img.b2bpic.net/free-photo/business-woman-pointing-phone_23-2148336922.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/business-woman-pointing-phone_23-2148336922.jpg?_wi=3",
imageAlt: "Direct communication"
},
]}
@@ -135,28 +135,28 @@ export default function HomePage() {
id: "1",
name: "Mumbai Workers",
price: "Find Jobs",
imageSrc: "http://img.b2bpic.net/free-photo/group-indian-business-man-suits-sitting-office-cafe-with-laptop-texting-phones-making-photo-coffee_627829-1491.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/group-indian-business-man-suits-sitting-office-cafe-with-laptop-texting-phones-making-photo-coffee_627829-1491.jpg?_wi=2",
imageAlt: "Mumbai city"
},
{
id: "2",
name: "Pune Workers",
price: "Find Jobs",
imageSrc: "http://img.b2bpic.net/free-photo/scenery-sunset-mill-building-greensboro-north-carolina-usa_181624-24794.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/scenery-sunset-mill-building-greensboro-north-carolina-usa_181624-24794.jpg?_wi=2",
imageAlt: "Pune city"
},
{
id: "3",
name: "Nagpur Workers",
price: "Find Jobs",
imageSrc: "http://img.b2bpic.net/free-photo/civil-engineers-work-according-road-conditions-have-barriers_1150-24316.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/civil-engineers-work-according-road-conditions-have-barriers_1150-24316.jpg?_wi=1",
imageAlt: "Nagpur city"
},
{
id: "4",
name: "Aurangabad Workers",
price: "Find Jobs",
imageSrc: "http://img.b2bpic.net/free-photo/women-happily-shopping-buying-consumer-products-customer-day_23-2151623440.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/women-happily-shopping-buying-consumer-products-customer-day_23-2151623440.jpg?_wi=1",
imageAlt: "Aurangabad city"
},
]}

View File

@@ -62,27 +62,27 @@ export default function WorkersPage() {
]}
mediaItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/explaining-points-new-project_1098-15345.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/explaining-points-new-project_1098-15345.jpg?_wi=1",
imageAlt: "Beginner worker training",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/three-women-working-as-architectors-constraction-making-decision-about-plan-building_1157-48459.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/three-women-working-as-architectors-constraction-making-decision-about-plan-building_1157-48459.jpg?_wi=1",
imageAlt: "Intermediate workers",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-business-people-conference-room_23-2148911826.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-business-people-conference-room_23-2148911826.jpg?_wi=1",
imageAlt: "Advanced professionals",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/building-construction-worker-site-with-architect_23-2149124289.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/building-construction-worker-site-with-architect_23-2149124289.jpg?_wi=3",
imageAlt: "Professional expertise",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/people-taking-part-business-event_23-2149346656.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/people-taking-part-business-event_23-2149346656.jpg?_wi=3",
imageAlt: "Worker collaboration",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/business-woman-pointing-phone_23-2148336922.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/business-woman-pointing-phone_23-2148336922.jpg?_wi=4",
imageAlt: "Search platform",
},
]}
@@ -101,21 +101,21 @@ export default function WorkersPage() {
id: "1",
name: "Basic Level Workers",
price: "Entry Position",
imageSrc: "http://img.b2bpic.net/free-photo/explaining-points-new-project_1098-15345.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/explaining-points-new-project_1098-15345.jpg?_wi=2",
imageAlt: "Basic level workers",
},
{
id: "2",
name: "Intermediate Professionals",
price: "Experienced",
imageSrc: "http://img.b2bpic.net/free-photo/three-women-working-as-architectors-constraction-making-decision-about-plan-building_1157-48459.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/three-women-working-as-architectors-constraction-making-decision-about-plan-building_1157-48459.jpg?_wi=2",
imageAlt: "Intermediate professionals",
},
{
id: "3",
name: "Advanced Experts",
price: "Expert Level",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-business-people-conference-room_23-2148911826.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-business-people-conference-room_23-2148911826.jpg?_wi=2",
imageAlt: "Advanced experts",
},
]}
@@ -138,21 +138,21 @@ export default function WorkersPage() {
id: "1",
title: "Verified Credentials",
tags: ["Background Checked", "Certified Profiles"],
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-checking-car-report_329181-11798.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-checking-car-report_329181-11798.jpg?_wi=3",
imageAlt: "Verification system",
},
{
id: "2",
title: "Local Availability",
tags: ["City-Based", "Quick Deployment"],
imageSrc: "http://img.b2bpic.net/free-photo/focused-wisconsin-state-with-magnifying-glass_23-2148232432.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/focused-wisconsin-state-with-magnifying-glass_23-2148232432.jpg?_wi=3",
imageAlt: "Location matching",
},
{
id: "3",
title: "Transparent Profiles",
tags: ["Work History", "Skills Listed"],
imageSrc: "http://img.b2bpic.net/free-photo/business-woman-pointing-phone_23-2148336922.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/business-woman-pointing-phone_23-2148336922.jpg?_wi=5",
imageAlt: "Worker profiles",
},
]}