Docker config

This commit is contained in:
mukesh13
2025-06-16 15:53:12 +05:30
commit da3df17022
411 changed files with 24117 additions and 0 deletions

View File

@ -0,0 +1,15 @@
import React from 'react';
import CareerHero from './CareerHero'
import CareerSection from './CareerSection';
const CareerPage = () => {
return (
<div className="page-content contact-us">
<CareerHero />
<div className="h-6"></div>
<CareerSection />
</div>
);
};
export default CareerPage;