import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card" import { Trophy, Medal, Award, Star } from "lucide-react" export default function AchievementsSection() { const achievements = [ { year: "2023", title: "RoboMaster International Championship", position: "Finals Qualification", icon: , description: "Competed against 32 international teams and advanced to the final rounds, showcasing exceptional strategy and robot performance.", }, { year: "2022", title: "RoboMaster Regional Competition", position: "Champion", icon: , description: "Achieved perfect scores in autonomous navigation and target acquisition challenges, securing the regional championship.", }, { year: "2022", title: "Best Technical Innovation Award", position: "Winner", icon: , description: "Recognized for developing a novel obstacle avoidance system using advanced sensor fusion technology.", }, { year: "2021", title: "RoboMaster Technical Challenge", position: "Runner-up", icon: , description: "Excelled in technical challenge segments, particularly in autonomous operation and precision control categories, earning recognition from industry experts.", }, ] return ( 战绩 ACHIEVEMENTS 我们在 RoboMaster 竞赛中的优异成绩证明了我们的技术实力和应对机器人挑战的创新方法。 {achievements.map((achievement, index) => ( {achievement.icon} {achievement.title} {achievement.year} • {achievement.position} {achievement.description} ))} ) }
ACHIEVEMENTS
我们在 RoboMaster 竞赛中的优异成绩证明了我们的技术实力和应对机器人挑战的创新方法。
{achievement.description}