Work Hub

Welcome to the TCCG Work Hub

Find career opportunities, apply for active projects, and enhance your skills.

Explore Jobs
Apply Now

Latest Job Openings

Loading jobs…

Office Remodeling Project – Task Assignments

🔨 Cabinet Replacement

Remove and install new cabinets in the office break area.

Apply

🛠️ Ceiling Hole Repair & Wall Damage Fix

Patch and repaint ceiling holes and repair water-damaged walls.

Apply

🧹 Carpet Removal & Laminate Flooring Installation

Remove old carpets and install new laminate flooring.

Apply

🏡 Outdoor Deck Repair/Replacement

Inspect, repair, or replace damaged outdoor decking.

Apply

Apply for a Job or Project

Full Name

Email Address

Position or Task Applying For

Construction Manager
HVAC Technician
Carpenter
Cabinet Replacement Task

Upload Resume

Apply

Join TCCG Today

Find your next job or participate in active projects. Apply now!

Explore Jobs
Apply Now

document.addEventListener(“DOMContentLoaded”, function() {
fetch(“https://api.example.com/jobs”) // Replace with actual job API or WordPress REST API
.then(response => response.json())
.then(data => {
let jobList = document.getElementById(“job-listings”);
jobList.innerHTML = “”; // Clear placeholder text
data.forEach(job => {
jobList.innerHTML += `

${job.title}

Location: ${job.location} | Salary: ${job.salary}

Apply

`;
});
})
.catch(error => {
console.error(“Error fetching job listings:”, error);
document.getElementById(“job-listings”).innerHTML = “

Unable to load jobs. Please try again later.

“;
});

// Job Application Form Submission
document.getElementById(“jobApplicationForm”).addEventListener(“submit”, function(event) {
event.preventDefault();
alert(“Your application has been submitted successfully!”);
});
});