Update src/app/placements/page.tsx

This commit is contained in:
2026-03-05 13:28:02 +00:00
parent 5d785d32f5
commit 6a5955fc73

View File

@@ -3,7 +3,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterCard from "@/components/sections/footer/FooterCard";
import Link from "next/link";
@@ -81,29 +81,31 @@ export default function PlacementsPage() {
</div>
<div id="placement-testimonials" data-section="placement-testimonials" className="py-16 md:py-24">
<TestimonialCardTen
<TestimonialCardOne
title="Success Stories"
description="Hear from our graduates about their placement experiences and career achievements after joining NRIIT."
tag="Student Testimonials"
tagIcon={Quote}
textboxLayout="default"
useInvertedBackground={false}
gridVariant="uniform-all-items-equal"
animationType="slide-up"
testimonials={[
{
id: "1", title: "Placed in Tier-1 Tech Company", quote:
"NRIIT's curriculum and industry exposure prepared me perfectly for my role at a leading tech multinational. The mock interviews and placement coaching were incredibly valuable.", name: "Arjun Kumar", role: "Software Engineer, Tech Innovators Inc", imageSrc:
id: "1", name: "Arjun Kumar", role: "Software Engineer", company: "Tech Innovators Inc", rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/image-young-beautiful-woman-student-smiling-holding-notebooks-homework-material-standing_1258-205924.jpg", imageAlt: "Arjun Kumar"},
{
id: "2", title: "International Opportunity", quote:
"Thanks to NRIIT's strong industry partnerships and international collaborations, I got placed with a global consulting firm. The placement team was extremely supportive.", name: "Priya Sharma", role: "Data Analyst, Analytics Corp", imageSrc:
id: "2", name: "Priya Sharma", role: "Data Analyst", company: "Analytics Corp", rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/portrait-woman-before-lesson_329181-2988.jpg", imageAlt: "Priya Sharma"},
{
id: "3", title: "Fast-Track Career Growth", quote:
"The comprehensive placement support and skill development programs at NRIIT gave me a strong foundation. I got promoted within a year of joining the company.", name: "Vikram Singh", role: "Systems Architect, Cloud Solutions Ltd", imageSrc:
id: "3", name: "Vikram Singh", role: "Systems Architect", company: "Cloud Solutions Ltd", rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/vertical-portrait-young-successful-woman-employee-entrepreneur-office-hall-tutor-carry-laptop-notebooks-looking-away-with-satisfied-pleased-smile-like-her-job_197531-30584.jpg", imageAlt: "Vikram Singh"},
{
id: "4", title: "Entrepreneurial Journey", quote:
"NRIIT encouraged innovation and entrepreneurship. Many of my batch mates and I started our own ventures, and the alumni network provided great support throughout.", name: "Anjali Patel", role: "Product Manager, Global Tech Solutions", imageSrc:
id: "4", name: "Anjali Patel", role: "Product Manager", company: "Global Tech Solutions", rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/colleagues-studying-together-front-their-college_23-2149038478.jpg", imageAlt: "Anjali Patel"},
]}
/>
@@ -146,4 +148,4 @@ export default function PlacementsPage() {
</div>
</ThemeProvider>
);
}
}