diff --git a/public/sopt4.jpg b/public/sopt4.jpg new file mode 100644 index 0000000..202ddad Binary files /dev/null and b/public/sopt4.jpg differ diff --git a/public/spot1.jpg b/public/spot1.jpg new file mode 100644 index 0000000..572994a Binary files /dev/null and b/public/spot1.jpg differ diff --git a/public/spot2.jpg b/public/spot2.jpg new file mode 100644 index 0000000..bda8dfe Binary files /dev/null and b/public/spot2.jpg differ diff --git a/public/spot3.jpg b/public/spot3.jpg new file mode 100644 index 0000000..0db3ecd Binary files /dev/null and b/public/spot3.jpg differ diff --git a/src/app/(pages)/careers/page.jsx b/src/app/(pages)/careers/page.jsx new file mode 100644 index 0000000..1ae98c5 --- /dev/null +++ b/src/app/(pages)/careers/page.jsx @@ -0,0 +1,176 @@ +import React from 'react'; +// Hero Component +const Hero = () => { + return ( +
+ {/* Background Grid and Decorative Elements */} +
+
+
+
+
+
+ + {/* Content Section */} +
+

+ Find Your Next Career Opportunity +

+

+ Join a Team That Innovates. +

+

+ Explore exciting career opportunities at Our Company. Whether you're passionate about technology, sales, or design, there's a place for you in our team. +

+
+ + Explore Jobs + + + Contact Us + +
+
+
+ ); +}; + +// Spotlight Component +const Spotlight = () => { + const spotlightJobs = [ + { + title: 'Senior Staff Software Developer, Kubernetes', + description: 'Work on building the future of Kubernetes with our cloud-native team.', + location: 'Remote eligible', + office: 'Kirkland, WA, USA; +5 more', + image: '/spot1.jpg', + }, + { + title: 'Google AI and ML roles', + description: 'Search some of our newest, priority roles in artificial intelligence and machine learning.', + image: '/spot2.jpg', + }, + { + title: 'Consumer Hardware', + description: 'Design and build the systems that are at the heart of the world\'s largest and most powerful computing infrastructure and products.', + image: '/spot3.jpg', + }, + { + title: 'Platforms & Ecosystems', + description: 'Work on our innovative software products that have an impact on peopleโ€™s lives across the world.', + image: '/sopt4.jpg', + }, + ]; + + return ( +
+

Spotlight

+
+ {spotlightJobs.map((job, index) => ( +
+ {job.title} +
+

{job.title}

+

{job.description}

+ {job.location && ( +
+ laptop_mac + {job.location} +
+ )} + {job.office && ( +
+ location_on + {job.office} +
+ )} +
+
+ ))} +
+
+ ); +}; + +// Path to Success Section (New) +const PathToSuccess = () => { + return ( +
+

Your Path to Career Success

+ + {/* Vision */} +
+ Vision +
+

๐ŸŒŸ Career Vision

+

+ Our career vision is to create an inclusive environment where every team member has the opportunity to grow, innovate, and make a meaningful impact. We believe in nurturing talent and offering opportunities that drive both personal and professional growth, leading to long-term success in your career journey. +

+
+
+ + {/* Mission */} +
+ Mission +
+

๐ŸŽฏ Career Mission

+

+ Our mission is to empower individuals by providing them with the tools, mentorship, and environment needed to innovate and excel. We strive to foster a culture of collaboration, diversity, and creativity, ensuring that every individual feels supported in their pursuit of excellence. +

+
+
+ + {/* Goal */} +
+ Goal +
+

๐Ÿš€ Career Goal

+

+ Our goal is to provide a platform for our employees to achieve both their personal and professional aspirations. We aim to be a workplace where passion meets purpose, where every challenge is an opportunity to learn, and where the future is shaped by the talent we cultivate. +

+
+
+
+ ); +}; + + +// CareerPage Component +const CareerPage = () => { + return ( +
+ + + +
+ ); +}; + +export default CareerPage; diff --git a/src/components/Global/Header.jsx b/src/components/Global/Header.jsx index e62c82d..c41286c 100644 --- a/src/components/Global/Header.jsx +++ b/src/components/Global/Header.jsx @@ -137,6 +137,13 @@ export function NavigationMenu() { + + + + Careers + + +