update latest

This commit is contained in:
2026-02-03 19:39:47 +05:30
parent f9c9aa0c20
commit b68f09c2aa
3 changed files with 3 additions and 11 deletions

2
.gitignore vendored
View File

@ -39,3 +39,5 @@ yarn-error.log*
# typescript # typescript
*.tsbuildinfo *.tsbuildinfo
next-env.d.ts next-env.d.ts
.vercel

View File

@ -36,16 +36,6 @@ const CTASection = () => {
> >
Contact Admissions Contact Admissions
</Link> </Link>
<Link
href="/#"
className="inline-block px-6 py-3 text-sm font-medium rounded border-2 hover:opacity-70 transition-opacity duration-300"
style={{
borderColor: '#012068',
color: '#012068'
}}
>
Download Brochure
</Link>
</div> </div>
</div> </div>
</section> </section>

View File

@ -10,7 +10,7 @@ interface TeamListingProps {
} }
const TeamListing: React.FC<TeamListingProps> = ({ const TeamListing: React.FC<TeamListingProps> = ({
title = "Our Faculty", title = "Our Team",
onMemberClick onMemberClick
}) => { }) => {
const [teamMembers, setTeamMembers] = useState<TeamMember[]>([]); const [teamMembers, setTeamMembers] = useState<TeamMember[]>([]);