import { Avatar, AvatarFallback } from "@/components/ui/avatar";
import { Button } from "@/components/ui/button";
import { Marquee } from "@/components/ui/marquee";
import Link from "next/link";
import { ComponentProps } from "react";
const testimonials = [
{
id: 1,
name: "John Doe",
designation: "Software Engineer",
company: "TechCorp",
testimonial:
"This product has completely transformed the way we work. The efficiency and ease of use are unmatched!",
avatar: "https://randomuser.me/api/portraits/men/1.jpg",
},
{
id: 2,
name: "Sophia Lee",
designation: "Data Analyst",
company: "InsightTech",
testimonial:
"This tool has saved me hours of work! The analytics and reporting features are incredibly powerful.",
avatar: "https://randomuser.me/api/portraits/women/6.jpg",
},
{
id: 3,
name: "Michael Johnson",
designation: "UX Designer",
company: "DesignPro",
testimonial:
"An amazing tool that simplifies complex tasks. Highly recommended for professionals in the industry.",
avatar: "https://randomuser.me/api/portraits/men/3.jpg",
},
{
id: 4,
name: "Emily Davis",
designation: "Marketing Specialist",
company: "BrandBoost",
testimonial:
"I've seen a significant improvement in our team's productivity since we started using this service.",
avatar: "https://randomuser.me/api/portraits/women/4.jpg",
},
{
id: 5,
name: "Daniel Martinez",
designation: "Full-Stack Developer",
company: "CodeCrafters",
testimonial:
"The best investment we've made! The support team is also super responsive and helpful.",
avatar: "https://randomuser.me/api/portraits/men/5.jpg",
},
{
id: 6,
name: "Jane Smith",
designation: "Product Manager",
company: "InnovateX",
testimonial:
"The user experience is top-notch! The interface is clean, intuitive, and easy to navigate.",
avatar: "https://randomuser.me/api/portraits/women/2.jpg",
},
];
const Testimonials = () => (
<div className="min-h-screen flex justify-center items-center py-12">
<div className="h-full w-full">
<h2 className="text-5xl font-semibold text-center tracking-[-0.03em] px-6 text-pretty">
Success Stories
</h2>
<p className="mt-3 text-center text-muted-foreground text-xl">
Real stories from people who use and love our product every day
</p>
<div className="mt-14 relative">
<div className="z-10 absolute left-0 inset-y-0 w-[15%] bg-linear-to-r from-background to-transparent" />
<div className="z-10 absolute right-0 inset-y-0 w-[15%] bg-linear-to-l from-background to-transparent" />
<Marquee pauseOnHover className="[--duration:20s]">
<TestimonialList />
</Marquee>
<Marquee pauseOnHover reverse className="mt-0 [--duration:20s]">
<TestimonialList />
</Marquee>
</div>
</div>
</div>
);
const TestimonialList = () =>
testimonials.map((testimonial) => (
<div
key={testimonial.id}
className="min-w-96 max-w-sm bg-accent rounded-xl p-6"
>
<div className="flex items-center justify-between">
<div className="flex items-center gap-3">
<Avatar className="size-10">
<AvatarFallback className="text-xl font-medium bg-primary text-primary-foreground">
{testimonial.name.charAt(0)}
</AvatarFallback>
</Avatar>
<div>
<p className="font-semibold">{testimonial.name}</p>
<p className="text-sm text-gray-500">{testimonial.designation}</p>
</div>
</div>
<Button variant="ghost" size="icon" asChild>
<Link href="#" target="_blank">
<TwitterLogo className="w-4 h-4" />
</Link>
</Button>
</div>
<p className="mt-5 text-[17px]">{testimonial.testimonial}</p>
</div>
));
const TwitterLogo = (props: ComponentProps<"svg">) => (
<svg
role="img"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<title>X</title>
<path
fill="currentColor"
d="M18.901 1.153h3.68l-8.04 9.19L24 22.846h-7.406l-5.8-7.584-6.638 7.584H.474l8.6-9.83L0 1.154h7.594l5.243 6.932ZM17.61 20.644h2.039L6.486 3.24H4.298Z"
/>
</svg>
);
export default Testimonials;