diff --git a/src/app/teachers/page.tsx b/src/app/teachers/page.tsx index 432677e..b61987b 100644 --- a/src/app/teachers/page.tsx +++ b/src/app/teachers/page.tsx @@ -2,9 +2,9 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; -import TeamCardEleven from "@/components/sections/team/TeamCardEleven"; -import FaqSplitText from "@/components/sections/faq/FaqSplitText"; +import SplitAbout from "@/components/sections/about/SplitAbout"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; +import { Users, BookOpen, Clock, Award } from "lucide-react"; export default function TeachersPage() { const navItems = [ @@ -14,78 +14,24 @@ export default function TeachersPage() { { name: "Çalışma Programı", id: "schedule" }, ]; - const teacherGroups = [ + const bulletPoints = [ { - id: "group-1", - groupTitle: "İleri Seviye Öğretmenler", - members: [ - { - id: "1", - title: "Ayşe Kaya", - subtitle: "Matematik & Fizik", - detail: "12 yıl tecrübe | 5.0 puan", - imageSrc: "http://img.b2bpic.net/free-photo/young-female-glasses-workplace_1301-980.jpg?_wi=1", - imageAlt: "professional woman teacher portrait headshot", - }, - { - id: "2", - title: "Mehmet Yıldız", - subtitle: "İngilizce & Dil", - detail: "15 yıl tecrübe | 4.9 puan", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-businessman-office-3_1262-1489.jpg?_wi=1", - imageAlt: "professional man teacher portrait headshot", - }, - { - id: "3", - title: "Zeynep Demir", - subtitle: "Kimya & Biyoloji", - detail: "10 yıl tecrübe | 4.8 puan", - imageSrc: "http://img.b2bpic.net/free-photo/woman-posing-with-books_23-2148680219.jpg?_wi=1", - imageAlt: "female scientist professor portrait headshot", - }, - { - id: "4", - title: "İbrahim Çelik", - subtitle: "Tarih & Sosyal Bilgiler", - detail: "8 yıl tecrübe | 4.9 puan", - imageSrc: "http://img.b2bpic.net/free-photo/young-man-wearing-blue-outfit-looking-satisfied_1298-169.jpg?_wi=1", - imageAlt: "male professor teacher history expert portrait", - }, - ], + title: "Deneyimli Profesyoneller", description: "50+ sertifikalı ve deneyimli öğretmen", icon: Users, + }, + { + title: "Kapsamlı Ders Katalogları", description: "200+ farklı konu ve disiplin", icon: BookOpen, + }, + { + title: "Esnek Zaman Planlaması", description: "Kendi zaman diliminizde dersler", icon: Clock, + }, + { + title: "Kalite Garantisi", description: "4.9/5 ortalama memnuniyet oranı", icon: Award, }, ]; - const faqData = [ + const contactButtons = [ { - id: "1", - title: "Öğretmen seçerken nelere dikkat etmeliyim?", - content: - "Öğretmen profillerinde deneyim, uzmanlık alanı ve öğrenci puanlarını inceleyebilirsiniz. İlk dersini denemek için \"İletişime Geç\" düğmesini kullanarak öğretmenle bağlantı kurabilirsiniz.", - }, - { - id: "2", - title: "Ders saatlerini nasıl düzenleyebilirim?", - content: - "Çalışma Programı sayfasında haftalık ders takvimini görebilirsiniz. Istediğiniz ders saatine tıklayarak \"Katıl\" butonu ile kaydolabilirsiniz.", - }, - { - id: "3", - title: "Etkinliklere nasıl katılabilirim?", - content: - "Etkinlikler sayfasında tüm yaklaşan dersleri ve webinarları görebilirsiniz. İlgilendiğiniz etkinliğin \"Kayıt Ol\" düğmesine tıklayarak katılabilirsiniz.", - }, - { - id: "4", - title: "Ödeme seçenekleri nelerdir?", - content: - "Kredi kartı, banka havalesi ve e-cüzdan gibi çeşitli ödeme yöntemlerini destekliyoruz. Ödeme bilgileri gizli ve güvenlidir.", - }, - { - id: "5", - title: "Dersi iptal etmek istiyorsam ne yapmalıyım?", - content: - "Dersin başlamasından en az 24 saat önce iptal edebilirsiniz. Profil bölümünde 'Kayıtlı Dersler' kısmından ders iptalini gerçekleştirebilirsiniz.", - }, + text: "Öğretmen Bul", href: "#"}, ]; return ( @@ -95,7 +41,7 @@ export default function TeachersPage() { borderRadius="rounded" contentWidth="compact" sizing="mediumSizeLargeTitles" - background="noise" + background="circleGradient" cardStyle="layered-gradient" primaryButtonStyle="shadow" secondaryButtonStyle="layered" @@ -110,26 +56,17 @@ export default function TeachersPage() { /> -
- + -
- -
-
@@ -137,15 +74,11 @@ export default function TeachersPage() { ); -} \ No newline at end of file +}