/* eslint-disable @next/next/no-img-element */ import Link from "next/link"; import {BsBook, BsHeadphones, BsMegaphone, BsPen} from "react-icons/bs"; import Navbar from "@/components/Navbar"; import Footer from "@/components/Footer"; import translation from "@/translation/home.json"; import clsx from "clsx"; import Tag from "@/components/Tag"; import Title from "@/components/Title"; interface Props { language: "en" | "ar"; } export default function Home({language}: Props) { return (
IELTS Packages - Together we prepare for the future
{/* Modules Section */}
{translation.modules.reading.title[language]} {translation.modules.reading.description[language]}
{translation.modules.listening.title[language]} {translation.modules.listening.description[language]}
{translation.modules.writing.title[language]} {translation.modules.writing.description[language]}
{translation.modules.speaking.title[language]} {translation.modules.speaking.description[language]}
{/* Learn with AI */}
{translation.learn_ai.tag[language]}
{translation.learn_ai.title[language]}

{translation.learn_ai.description[language]}

Writing Evaluation
{/* EnCoach Benefits Section */}
Person using a laptop
Person using a laptop
Person using a laptop
{translation.encoach_benefits.tag[language]}
{translation.encoach_benefits.title[language]}

{translation.encoach_benefits.description[language]}

{/* Interested Section */}
{translation.interested.tag[language]} {translation.interested.title[language]}
{translation.interested.whatsapp[language]} WhatsApp QR Code for MTI
{/* CEO Message Section */}
{translation.ceo_message.tag[language]}
{translation.ceo_message.title[language]}

{translation.ceo_message.description[language]}

MTI's CEO
{/* Partner and Accreditation Section */} {/*
{translation.our_partners[language]}
Sohar Aluminium's Logo
{translation.accreditation[language]}
IDP's Logo
*/}
); }