-
Notifications
You must be signed in to change notification settings - Fork 138
Updated testimonial section #418
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
| @@ -1,14 +1,19 @@ | ||||
| import React from "react"; | ||||
| import { motion } from "framer-motion"; | ||||
| import React, { useState } from "react"; | ||||
| import { motion, AnimatePresence } from "framer-motion"; | ||||
| import { Avatar, AvatarFallback, AvatarImage } from "../ui/avatar"; | ||||
| import { useColorMode } from "@docusaurus/theme-common"; | ||||
| import { Quote, ExternalLink, Calendar, MapPin } from "lucide-react"; | ||||
|
|
||||
| interface TestimonialCardProps { | ||||
| name: string; | ||||
| username: string; | ||||
| content: string; | ||||
| date: string; | ||||
| avatar: string; | ||||
| rating?: number; | ||||
| role?: string; | ||||
| company?: string; | ||||
| location?: string; | ||||
| } | ||||
|
|
||||
| const TestimonialCard: React.FC<TestimonialCardProps> = ({ | ||||
|
|
@@ -17,58 +22,259 @@ const TestimonialCard: React.FC<TestimonialCardProps> = ({ | |||
| content, | ||||
| date, | ||||
| avatar, | ||||
| rating = 5, | ||||
| role, | ||||
| company, | ||||
| location, | ||||
| }) => { | ||||
| const { colorMode } = useColorMode(); | ||||
| const isDark = colorMode === "dark"; | ||||
| const [isHovered, setIsHovered] = useState(false); | ||||
|
|
||||
| return ( | ||||
| <motion.div | ||||
| initial={{ opacity: 0 }} | ||||
| animate={{ opacity: 1 }} | ||||
| exit={{ opacity: 0 }} | ||||
| className={`rounded-2xl p-6 shadow-lg hover:shadow-xl transition-shadow duration-300 h-[250px] flex flex-col justify-between ${ | ||||
| isDark ? "bg-[#1a1a1a] text-white" : "bg-white text-gray-900" | ||||
| }`} | ||||
| initial={{ opacity: 0, scale: 0.8, rotateY: -15 }} | ||||
| animate={{ opacity: 1, scale: 1, rotateY: 0 }} | ||||
| exit={{ opacity: 0, scale: 0.8, rotateY: 15 }} | ||||
| whileHover={{ | ||||
| scale: 1.02, | ||||
| rotateY: 2, | ||||
| transition: { duration: 0.4, ease: "easeOut" } | ||||
| }} | ||||
| onHoverStart={() => setIsHovered(true)} | ||||
| onHoverEnd={() => setIsHovered(false)} | ||||
| className={`relative group h-auto md:h-[420px] cursor-pointer`} | ||||
| > | ||||
| {/* Header with Avatar and Name */} | ||||
| <div className="flex items-center gap-4"> | ||||
| <Avatar className="w-24 h-24 rounded-full"> | ||||
| <AvatarImage src={avatar} className="object-contain" /> | ||||
| <AvatarFallback>CN</AvatarFallback> | ||||
| </Avatar> | ||||
| <div> | ||||
| <h3 className={`font-semibold text-lg ${isDark ? "text-white" : "text-gray-900"}`}> | ||||
| {name} | ||||
| </h3> | ||||
| <p className={`text-sm ${isDark ? "text-gray-400" : "text-gray-500"}`}> | ||||
| @{username} | ||||
| </p> | ||||
| {/* Enhanced 3D Card Container */} | ||||
| <motion.div | ||||
| className={`relative w-full h-full rounded-3xl p-6 md:p-8 transition-all duration-700`} | ||||
| style={{ | ||||
| background: isDark | ||||
| ? 'linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(31, 41, 55, 0.95))' | ||||
| : 'linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(249, 250, 251, 0.95))', | ||||
| backdropFilter: 'blur(20px)', | ||||
| border: isDark | ||||
| ? '1px solid rgba(75, 85, 99, 0.4)' | ||||
| : '1px solid rgba(229, 231, 235, 0.6)', | ||||
| boxShadow: isDark | ||||
| ? '0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(59, 130, 246, 0.15)' | ||||
| : '0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(59, 130, 246, 0.08)', | ||||
| paddingBottom: '32px', // increase bottom padding to prevent content cut off | ||||
| }} | ||||
| > | ||||
| {/* Enhanced Animated Background Elements */} | ||||
| <div className="absolute inset-0 overflow-hidden rounded-3xl hidden md:block"> | ||||
| <motion.div | ||||
| className="absolute -top-10 -right-10 w-32 h-32 bg-gradient-to-br from-blue-500/30 to-purple-500/30 rounded-full blur-xl" | ||||
| animate={{ | ||||
| scale: [1, 1.3, 1], | ||||
| opacity: [0.2, 0.5, 0.2], | ||||
| rotate: [0, 180, 360], | ||||
| }} | ||||
| transition={{ | ||||
| duration: 6, | ||||
| repeat: Infinity, | ||||
| ease: "easeInOut" | ||||
| }} | ||||
| /> | ||||
| <motion.div | ||||
| className="absolute -bottom-8 -left-8 w-24 h-24 bg-gradient-to-tr from-pink-500/30 to-orange-500/30 rounded-full blur-lg" | ||||
| animate={{ | ||||
| scale: [1.2, 1, 1.2], | ||||
| opacity: [0.3, 0.6, 0.3], | ||||
| rotate: [360, 180, 0], | ||||
| }} | ||||
| transition={{ | ||||
| duration: 4, | ||||
| repeat: Infinity, | ||||
| ease: "easeInOut", | ||||
| delay: 1 | ||||
| }} | ||||
| /> | ||||
| <motion.div | ||||
| className="absolute top-1/2 left-1/2 w-16 h-16 bg-gradient-to-r from-green-500/20 to-teal-500/20 rounded-full blur-md" | ||||
| animate={{ | ||||
| scale: [1, 1.5, 1], | ||||
| opacity: [0.1, 0.4, 0.1], | ||||
| x: [-20, 20, -20], | ||||
| y: [-10, 10, -10], | ||||
| }} | ||||
| transition={{ | ||||
| duration: 5, | ||||
| repeat: Infinity, | ||||
| ease: "easeInOut", | ||||
| delay: 2 | ||||
| }} | ||||
| /> | ||||
| </div> | ||||
| </div> | ||||
|
|
||||
| {/* Content */} | ||||
| <p className={`line-clamp-3 my-4 flex-grow ${isDark ? "text-gray-300" : "text-gray-700"}`}> | ||||
| {content} | ||||
| </p> | ||||
| {/* Glowing border on hover removed per feedback */} | ||||
|
|
||||
| {/* Footer with Hashtags and Date */} | ||||
| <div | ||||
| className={`flex items-center justify-between text-sm pt-2 border-t ${ | ||||
| isDark ? "border-gray-700" : "border-gray-100" | ||||
| }`} | ||||
| > | ||||
| <div className="flex gap-2 flex-wrap"> | ||||
| {content.match(/#\w+/g)?.map((hashtag, index) => ( | ||||
| <span | ||||
| key={index} | ||||
| className="text-blue-500 hover:text-blue-600 cursor-pointer" | ||||
| {/* Content Container */} | ||||
| <div className="relative z-10 h-full flex flex-col"> | ||||
| {/* Enhanced Header Section */} | ||||
| <div className="flex items-start justify-between mb-6"> | ||||
| <div className="flex items-center gap-4"> | ||||
| {/* Enhanced Avatar with Glow and Ring */} | ||||
| <motion.div | ||||
| className="relative" | ||||
| transition={{ duration: 0.3 }} | ||||
| > | ||||
| <div className={`absolute inset-0 rounded-full blur-lg opacity-70 bg-gradient-to-r from-blue-400 via-purple-400 to-pink-400 transition-all duration-500`} /> | ||||
| <div className={`absolute inset-0 rounded-full ring-2 ring-offset-2 ring-purple-500/30 ring-offset-purple-500/10 transition-all duration-300`} /> | ||||
| <Avatar className="w-14 h-14 md:w-16 md:h-16 rounded-full border-2 border-white/30 shadow-xl relative z-10"> | ||||
| <AvatarImage src={avatar} className="object-cover" /> | ||||
| <AvatarFallback className={`text-lg font-bold ${ | ||||
| isDark ? "bg-gray-800 text-white" : "bg-gray-100 text-gray-700" | ||||
| }`}> | ||||
| {name.split(' ').map(n => n[0]).join('').toUpperCase()} | ||||
| </AvatarFallback> | ||||
| </Avatar> | ||||
| </motion.div> | ||||
|
|
||||
| {/* Enhanced User Info */} | ||||
| <div className="flex-1"> | ||||
| <motion.h3 | ||||
| className={`font-bold text-lg md:text-xl mb-1 ${ | ||||
| isDark ? "text-white" : "text-gray-900" | ||||
| }`} | ||||
| initial={{ opacity: 0, x: -20 }} | ||||
| animate={{ opacity: 1, x: 0 }} | ||||
| transition={{ delay: 0.2 }} | ||||
| > | ||||
| {name} | ||||
| </motion.h3> | ||||
| {role && ( | ||||
| <motion.p | ||||
| className={`text-sm md:text-base font-semibold mb-1 bg-gradient-to-r from-blue-500 via-purple-500 to-pink-500 bg-clip-text text-transparent`} | ||||
| initial={{ opacity: 0, x: -20 }} | ||||
| animate={{ opacity: 1, x: 0 }} | ||||
| transition={{ delay: 0.3 }} | ||||
| > | ||||
| {role} | ||||
| </motion.p> | ||||
| )} | ||||
| {company && ( | ||||
| <motion.p | ||||
| className={`text-sm flex items-center gap-1 ${isDark ? "text-gray-400" : "text-gray-500"}`} | ||||
| initial={{ opacity: 0, x: -20 }} | ||||
| animate={{ opacity: 1, x: 0 }} | ||||
| transition={{ delay: 0.4 }} | ||||
| > | ||||
| <span className="w-1 h-1 bg-current rounded-full"></span> | ||||
| {company} | ||||
| </motion.p> | ||||
| )} | ||||
| {location && ( | ||||
| <motion.p | ||||
| className={`text-xs flex items-center gap-1 ${isDark ? "text-gray-500" : "text-gray-400"}`} | ||||
| initial={{ opacity: 0, x: -20 }} | ||||
| animate={{ opacity: 1, x: 0 }} | ||||
| transition={{ delay: 0.45 }} | ||||
| > | ||||
| <MapPin size={10} /> | ||||
| {location} | ||||
| </motion.p> | ||||
| )} | ||||
| <motion.p | ||||
| className={`text-xs flex items-center gap-1 ${isDark ? "text-gray-500" : "text-gray-400"}`} | ||||
| initial={{ opacity: 0, x: -20 }} | ||||
| animate={{ opacity: 1, x: 0 }} | ||||
| transition={{ delay: 0.5 }} | ||||
| > | ||||
| <span className="w-1 h-1 bg-current rounded-full"></span> | ||||
| @{username} | ||||
| </motion.p> | ||||
| </div> | ||||
| </div> | ||||
|
|
||||
| {/* Enhanced Quote Icon */} | ||||
| <motion.div | ||||
| className={`text-4xl opacity-20 group-hover:opacity-50 transition-opacity duration-300 ${ | ||||
| isDark ? "text-blue-300" : "text-blue-500" | ||||
| }`} | ||||
| animate={{ | ||||
| rotate: isHovered ? [0, 15, -15, 0] : 0, | ||||
| scale: isHovered ? 1.2 : 1, | ||||
| }} | ||||
| transition={{ duration: 0.6 }} | ||||
| > | ||||
| <Quote /> | ||||
| </motion.div> | ||||
| </div> | ||||
|
|
||||
| {/* Enhanced Rating Stars */} | ||||
| <motion.div | ||||
| className="flex items-center gap-1 mb-4 md:mb-6" | ||||
| initial={{ opacity: 0, y: 20 }} | ||||
| animate={{ opacity: 1, y: 0 }} | ||||
| transition={{ delay: 0.6 }} | ||||
| > | ||||
| {Array.from({ length: 5 }).map((_, index) => ( | ||||
| <motion.svg | ||||
| key={index} | ||||
| className={`w-5 h-5 ${index < rating ? "text-yellow-400" : "text-gray-300"}`} | ||||
| fill="currentColor" | ||||
| viewBox="0 0 20 20" | ||||
| initial={{ opacity: 0, scale: 0.5 }} | ||||
| animate={{ opacity: 1, scale: 1 }} | ||||
| transition={{ delay: 0.7 + index * 0.1 }} | ||||
| whileHover={{ scale: 1.3, rotate: 10 }} | ||||
| > | ||||
| <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" /> | ||||
| </motion.svg> | ||||
| ))} | ||||
| <motion.span | ||||
| className={`ml-2 text-xs md:text-sm font-medium ${isDark ? "text-gray-400" : "text-gray-500"}`} | ||||
| initial={{ opacity: 0 }} | ||||
| animate={{ opacity: 1 }} | ||||
| transition={{ delay: 1.2 }} | ||||
| > | ||||
| {hashtag} | ||||
| </span> | ||||
| ))} | ||||
| {rating}.0 | ||||
| </motion.span> | ||||
| </motion.div> | ||||
|
|
||||
| {/* Enhanced Content */} | ||||
| <motion.div | ||||
| className="flex-1 mb-4 md:mb-6" | ||||
| initial={{ opacity: 0, y: 20 }} | ||||
| animate={{ opacity: 1, y: 0 }} | ||||
| transition={{ delay: 0.8 }} | ||||
| > | ||||
| <p className={`text-sm leading-relaxed line-clamp-5 md:line-clamp-6 ${ | ||||
| isDark ? "text-gray-300" : "text-gray-700" | ||||
| }`}> | ||||
| "{content}" | ||||
| </p> | ||||
| </motion.div> | ||||
|
|
||||
| {/* Enhanced Footer */} | ||||
| {/* Footer section removed for cleaner carousel cards */} | ||||
| </div> | ||||
| <span className={isDark ? "text-gray-500" : "text-gray-400"}>{date}</span> | ||||
| </div> | ||||
|
|
||||
| {/* Hover overlay removed per feedback */} | ||||
|
||||
| {/* Hover overlay removed per feedback */} |
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove this comment as it describes removed content rather than documenting the current implementation.