import { AcademicCapIcon, BanknotesIcon, CalendarDateRangeIcon, CloudArrowUpIcon, } from "@heroicons/react/24/solid"; import { motion } from "motion/react"; import Image from "next/image"; const features = [ { name: "High Quality Tutors", description: "We only hire tutors who have been high-performing students with previous teaching experience. Most of our tutors are currently pursuing PhDs or Masters in their respective fields.", icon: AcademicCapIcon, }, { name: "Negotiable Pricing", description: "We determine pricing on a case-by-case basis during our free consultation to best accommodate the needs of both students and tutors.", icon: BanknotesIcon, }, { name: "Flexible Scheduling", description: "We offer both in-person and online session options and can accommodate different time zones.", icon: CalendarDateRangeIcon, }, { name: "Modern, Accessible Platform", description: "Our platform uses the latest web technologies to ensure a seamless connection between students and tutors on all devices.", icon: CloudArrowUpIcon, }, ]; export default function WhyUs() { return (
Why Choose{" "} Sensible Scholars? We make learning the best it can possibly be.
{features.map((feature) => (
{" "}
{feature.description}
))}
Product screenshot
); }