https://fazazaeat.co.uk/product/1 #19828
fazaza2020
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
import React, { useState } from 'react';
import { Helmet } from 'react-helmet';
import { motion } from 'framer-motion';
import { Button } from '@/components/ui/button';
import { Briefcase, Heart, Coffee, Star, Upload, FileType, CheckCircle2 } from 'lucide-react';
import { useToast } from '@/components/ui/use-toast';
import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogDescription, DialogFooter } from '@/components/ui/dialog';
import { Input } from '@/components/ui/input';
import { Label } from '@/components/ui/label';
const CareersPage = () => {
const { toast } = useToast();
const [selectedJob, setSelectedJob] = useState(null);
const [isApplyModalOpen, setIsApplyModalOpen] = useState(false);
const [file, setFile] = useState(null);
const [fileError, setFileError] = useState("");
const handleApplyClick = (job) => {
setSelectedJob(job);
setFile(null);
setFileError("");
setIsApplyModalOpen(true);
};
const handleFileChange = (e) => {
const selectedFile = e.target.files[0];
if (!selectedFile) return;
};
const handleSubmitApplication = (e) => {
e.preventDefault();
if (!file) {
setFileError("Please upload your CV/Resume to continue.");
return;
}
};
const jobs = [
{
title: "Delivery Driver",
department: "Logistics",
location: "Belfast, NI",
type: "Full-time / Part-time",
desc: "Join our fleet delivering premium meals to our customers with a smile. Flexible hours available."
},
{
title: "Customer Support Specialist",
department: "Support",
location: "Remote (UK)",
type: "Full-time",
desc: "Help our customers have the best experience possible by resolving inquiries and providing top-notch support."
},
{
title: "Marketing Coordinator",
department: "Marketing",
location: "Belfast, NI",
type: "Full-time",
desc: "Shape the voice of Fazaza Eat across social media, campaigns, and partnerships."
}
];
return (
<title>Careers | Join Our Team | Fazaza Eat</title>
);
};
export default CareersPage;
Beta Was this translation helpful? Give feedback.
All reactions