feat(about): add Oluwatosin Oseni to team section#1
Merged
Thabhelo merged 1 commit intoThabhelo:mainfrom Feb 21, 2026
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Adds a new team member (Oluwatosin Oseni) to the About page’s “Our Super Team” section, updating the layout to accommodate an additional profile.
Changes:
- Updated the team grid from 2 to 3 columns on
mdbreakpoints. - Added a new team member card for Oluwatosin Oseni (name, role, image).
- Reformatted portions of
About.tsx(notably quote style and line wrapping).
Comments suppressed due to low confidence (1)
src/pages/About.tsx:79
- The team member cards are hardcoded and duplicated; adding more members will keep increasing copy/paste markup. Consider moving the team data (name, role, img, alt, optional objectPosition) into an array and rendering it with .map(), similar to how timeline/features are handled elsewhere in this file.
<div className="grid grid-cols-1 md:grid-cols-3 gap-16 md:gap-32">
<div className="flex flex-col items-center text-center gap-4">
<img
src="/ayomikun.jpeg"
alt="Ayomikun Oyeniyi"
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+1
to
+4
| import { motion } from "framer-motion"; | ||
| import { Link as RouterLink } from "react-router-dom"; | ||
| import { ArrowRight, Users, Target, Heart, Zap } from "lucide-react"; | ||
| import PageLayout from "../components/PageLayout"; |
There was a problem hiding this comment.
This file switches to double quotes for imports/strings, but the rest of the TS/TSX codebase appears to consistently use single quotes (e.g., src/pages/Home.tsx:1-4, src/pages/Contact.tsx:1-6). To avoid inconsistent style and unnecessary diff churn, keep quote usage consistent (or run the repo’s formatter/linter config) so About.tsx matches the prevailing single-quote convention.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds Oluwatosin Oseni to the About/Team section.
Changes