diff --git a/careers.php b/careers.php index 717194f..05c7a6c 100644 --- a/careers.php +++ b/careers.php @@ -1,42 +1,34 @@ 'Senior Frontend Developer', - 'department' => 'Engineering', + 'id' => 1, + 'title' => 'Senior Product Manager', + 'department' => 'Product', 'location' => 'Remote', 'type' => 'Full-time' ], [ - 'title' => 'Product Manager', - 'department' => 'Product', + 'id' => 2, + 'title' => 'Lead Software Engineer (Backend)', + 'department' => 'Engineering', 'location' => 'New York, NY', 'type' => 'Full-time' ], [ - 'title' => 'UI/UX Designer', + 'id' => 3, + 'title' => 'UX/UI Designer', 'department' => 'Design', 'location' => 'Remote', 'type' => 'Contract' ], [ - 'title' => 'HR Generalist', - 'department' => 'People Ops', + 'id' => 4, + 'title' => 'Marketing Manager', + 'department' => 'Marketing', 'location' => 'San Francisco, CA', 'type' => 'Full-time' ], - [ - 'title' => 'DevOps Engineer', - 'department' => 'Engineering', - 'location' => 'Remote', - 'type' => 'Full-time' - ], - [ - 'title' => 'Marketing Specialist', - 'department' => 'Marketing', - 'location' => 'Austin, TX', - 'type' => 'Part-time' - ] ]; ?> @@ -102,7 +94,7 @@ $jobs = [ ·

- View Details + View Details diff --git a/job-details.php b/job-details.php new file mode 100644 index 0000000..0e9c387 --- /dev/null +++ b/job-details.php @@ -0,0 +1,288 @@ + 1, + 'title' => 'Senior Product Manager', + 'department' => 'Product', + 'location' => 'Remote', + 'description' => 'We are looking for an experienced Senior Product Manager to help us build the future of HR technology. You will be responsible for the product planning and execution throughout the Product Lifecycle, including: gathering and prioritizing product and customer requirements, defining the product vision, and working closely with engineering, sales, marketing and support to ensure revenue and customer satisfaction goals are met.', + 'requirements' => [ + '5+ years of product management experience', + 'Demonstrated success defining and launching excellent products', + 'Excellent written and verbal communication skills', + 'Bachelor’s degree (MBA preferred)', + 'Technical background, with experience in SaaS', + 'Excellent teamwork skills', + ], + 'benefits' => [ + 'Competitive salary and equity', + 'Comprehensive health, dental, and vision insurance', + 'Unlimited paid time off', + 'Remote work stipend', + 'Annual team offsites', + ] + ], + [ + 'id' => 2, + 'title' => 'Lead Software Engineer (Backend)', + 'department' => 'Engineering', + 'location' => 'New York, NY', + 'description' => 'As a Lead Software Engineer, you will be a key member of our engineering team, responsible for designing, developing, and deploying our backend services. You will work with a modern tech stack and have a significant impact on our product's architecture and performance.', + 'requirements' => [ + '8+ years of software development experience', + 'Expertise in PHP, Python, or similar languages', + 'Strong understanding of database design and SQL', + 'Experience with cloud platforms (AWS, GCP, Azure)', + 'Proven leadership and mentoring skills', + ], + 'benefits' => [ + 'Competitive salary and equity', + 'Comprehensive health, dental, and vision insurance', + '401(k) with company match', + 'Commuter benefits', + 'Catered lunches', + ] + ], + [ + 'id' => 3, + 'title' => 'UX/UI Designer', + 'department' => 'Design', + 'location' => 'Remote', + 'description' => 'We are seeking a talented UX/UI Designer to create amazing user experiences. The ideal candidate should have an eye for clean and artful design, possess superior UX/UI skills and be able to translate high-level requirements into interaction flows and artifacts, and transform them into beautiful, intuitive, and functional user interfaces.', + 'requirements' => [ + '3+ years of UX/UI design experience', + 'A strong portfolio of design projects', + 'Proficiency in Figma, Sketch, or other visual design and wire-framing tools', + 'Experience in creating wireframes, storyboards, user flows, process flows and site maps', + 'Excellent visual design skills with sensitivity to user-system interaction', + ], + 'benefits' => [ + 'Competitive salary', + 'Flexible work hours', + 'Health and wellness stipend', + 'Remote work stipend', + 'Opportunities for professional development', + ] + ], + [ + 'id' => 4, + 'title' => 'Marketing Manager', + 'department' => 'Marketing', + 'location' => 'San Francisco, CA', + 'description' => 'We are looking for a results-driven Marketing Manager to join our growing team. You will be responsible for developing and implementing marketing strategies to increase brand awareness and drive lead generation. This is a great opportunity for someone who is passionate about marketing and technology.', + 'requirements' => [ + '5+ years of marketing experience in the tech industry', + 'Proven experience in developing and executing marketing campaigns', + 'Strong understanding of digital marketing channels (SEO, SEM, social media, etc.)', + 'Excellent analytical and communication skills', + 'Bachelor's degree in Marketing or related field', + ], + 'benefits' => [ + 'Competitive salary and performance bonuses', + 'Comprehensive health, dental, and vision insurance', + 'Generous PTO and paid holidays', + '401(k) with company match', + 'A vibrant and collaborative work environment', + ] + ], +]; + +$job_id = isset($_GET['id']) ? (int)$_GET['id'] : 0; +$job = null; + +foreach ($jobs as $j) { + if ($j['id'] === $job_id) { + $job = $j; + break; + } +} + +// SEO and page metadata +$page_title = $job ? htmlspecialchars($job['title']) . ' - Flatlogic HR' : 'Job Not Found'; +$page_description = $job ? 'Apply for the ' . htmlspecialchars($job['title']) . ' position at Flatlogic. Location: ' . htmlspecialchars($job['location']) : 'The job you are looking for could not be found.'; +$page_keywords = 'jobs, careers, hiring, ' . ($job ? htmlspecialchars($job['title']) : ''); + +?> + + + + + + <?php echo $page_title; ?> + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

+

+

+ +

+
+
+ +
+ + +
+
+
+

Job Description

+

+ +

Requirements

+
    + +
  • + + +
  • + +
+ +

Benefits

+
    + +
  • + + +
  • + +
+
+
+
+
+

Interested?

+

Apply now to join our team and make an impact.

+ Apply Now +
+
+
+
+ +
+
+

Job Not Found

+

Sorry, the job you are looking for does not exist or has been filled.

+ View All Open Positions +
+
+ + + + + + + + +