All changes, done like fully react router uses, services, al/ml and solution page section alignment and missing section done!

This commit is contained in:
priyanshuvish
2025-09-23 20:13:31 +05:30
parent 5f5ddb1cd6
commit e78c8672e9
158 changed files with 2444 additions and 2093 deletions

View File

@@ -9,7 +9,7 @@ import { Textarea } from "../components/ui/textarea";
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "../components/ui/select";
import { Checkbox } from "../components/ui/checkbox";
import { UserPlus, Upload, Send, ArrowRight, Users, Briefcase, Target, Award, CheckCircle, FileText } from "lucide-react";
import { navigateTo } from "../App";
import { useNavigate } from "react-router-dom";
export const SendYourCV = () => {
const [formData, setFormData] = useState({
@@ -23,6 +23,8 @@ export const SendYourCV = () => {
consent: false
});
const navigate = useNavigate();
const [uploadedFile, setUploadedFile] = useState<File | null>(null);
const [isSubmitting, setIsSubmitting] = useState(false);
@@ -121,7 +123,7 @@ export const SendYourCV = () => {
return (
<div className="dark min-h-screen bg-background">
<Navigation />
{/* <Navigation /> */}
{/* Hero Section */}
<section className="pt-24 pb-16 bg-background">
@@ -427,11 +429,11 @@ export const SendYourCV = () => {
Want to see our current openings or learn more about our company culture? Check out our careers section.
</p>
<div className="flex flex-col sm:flex-row gap-4 justify-center">
<Button size="lg" className="bg-[#E5195E] hover:bg-[#E5195E]/90 text-white" onClick={() => navigateTo('/company/careers')}>
<Button size="lg" className="bg-[#E5195E] hover:bg-[#E5195E]/90 text-white" onClick={() => navigate('/company/careers')}>
View Current Job Openings
<ArrowRight className="ml-2 w-4 h-4" />
</Button>
<Button size="lg" variant="outline" className="border-white/20 text-white hover:bg-white/10" onClick={() => navigateTo('/company/culture-values')}>
<Button size="lg" variant="outline" className="border-white/20 text-white hover:bg-white/10" onClick={() => navigate('/company/culture-values')}>
Learn More About Our Culture
</Button>
</div>
@@ -439,7 +441,7 @@ export const SendYourCV = () => {
</div>
</section>
<Footer />
{/* <Footer /> */}
</div>
);
};