'use client'; import React, { useState } from 'react'; import { GraduationCap, Calendar, CheckCircle, MapPin, Mail, Phone, FileText, Award, AlertCircle, BookOpen, CreditCard, ArrowRight } from 'lucide-react'; export default function AdmissionsPage() { const [activeTab, setActiveTab] = useState('requirements'); // Application process steps for UTAS Oman const applicationSteps = [ { step: 1, title: 'Choose Your Program', description: 'Explore our undergraduate and postgraduate programs aligned with Oman Vision 2040.', timeline: '1-2 weeks', action: 'Browse Programs' }, { step: 2, title: 'Submit Application', description: 'Complete online application with required documents and pay application fee.', timeline: '2-3 days', action: 'Apply Online' }, { step: 3, title: 'Document Verification', description: 'Our admissions team verifies your academic credentials and documents.', timeline: '1-2 weeks', action: 'Track Status' }, { step: 4, title: 'Assessment & Interview', description: 'Complete entrance exam or interview if required for your program.', timeline: '1 week', action: 'Schedule Test' }, { step: 5, title: 'Admission Decision', description: 'Receive your admission decision and enrollment instructions.', timeline: '1-2 weeks', action: 'Check Result' }, { step: 6, title: 'Enrollment & Registration', description: 'Confirm enrollment, pay fees, and register for courses.', timeline: '1 week', action: 'Complete Enrollment' } ]; // Entry requirements by level const requirements = { undergraduate: [ { category: 'Academic Requirements', items: [ 'High School Diploma or equivalent (minimum 60%)', 'Strong performance in relevant subjects (Math, Science, English)', 'Grade 12 certificate with subject-specific requirements' ] }, { category: 'English Proficiency', items: [ 'IELTS Academic: 5.5 overall (5.0 in each band)', 'TOEFL iBT: 71 overall', 'UTAS English Placement Test (available on campus)', 'High school English: Grade B or above' ] }, { category: 'Additional Requirements', items: [ 'Completed application form', 'Recent passport-size photographs', 'Copy of passport/Emirates ID', 'Medical fitness certificate (for some programs)' ] } ], postgraduate: [ { category: 'Academic Requirements', items: [ 'Bachelor\'s degree from recognized institution', 'Minimum GPA of 2.5/4.0 or equivalent', 'Relevant undergraduate degree for chosen program', 'Professional experience (for MBA and some programs)' ] }, { category: 'English Proficiency', items: [ 'IELTS Academic: 6.0-6.5 overall (depending on program)', 'TOEFL iBT: 79-88 overall', 'UTAS English Placement Test', 'Previous degree taught in English (with certification)' ] }, { category: 'Program-Specific Requirements', items: [ 'Statement of purpose (500-1000 words)', 'Letters of recommendation (2-3)', 'CV/Resume with work experience', 'Portfolio (for design and creative programs)', 'GMAT/GRE scores (for some business programs)' ] } ] }; // Application documents checklist const documentChecklist = [ { document: 'Completed application form', required: true, note: 'Available online' }, { document: 'Academic transcripts (certified)', required: true, note: 'Original + translation if needed' }, { document: 'English proficiency test results', required: true, note: 'IELTS/TOEFL or equivalent' }, { document: 'Copy of passport/Emirates ID', required: true, note: 'Valid identification' }, { document: 'Passport-size photographs', required: true, note: '4 recent photos' }, { document: 'Statement of purpose', required: false, note: 'For postgraduate programs' }, { document: 'Letters of recommendation', required: false, note: '2-3 letters for postgraduate' }, { document: 'CV/Resume', required: false, note: 'For postgraduate and professional programs' }, { document: 'Portfolio', required: false, note: 'For design and creative programs' }, { document: 'Medical certificate', required: false, note: 'For specific programs only' } ]; // Important dates and deadlines const importantDates = [ { event: 'Fall Semester Application Deadline', date: 'July 15, 2025', type: 'deadline' }, { event: 'Fall Semester Classes Begin', date: 'September 1, 2025', type: 'start' }, { event: 'Spring Semester Application Deadline', date: 'December 15, 2025', type: 'deadline' }, { event: 'Spring Semester Classes Begin', date: 'February 1, 2026', type: 'start' }, { event: 'Summer Session Application Deadline', date: 'April 15, 2026', type: 'deadline' }, { event: 'Summer Session Classes Begin', date: 'June 1, 2026', type: 'start' } ]; // Application fees const applicationFees = [ { category: 'Undergraduate Programs', fee: 'OMR 25', note: 'Non-refundable application fee' }, { category: 'Postgraduate Programs', fee: 'OMR 50', note: 'Non-refundable application fee' }, { category: 'International Students', fee: '+OMR 25', note: 'Additional processing fee' }, { category: 'Late Application', fee: '+OMR 25', note: 'After deadline submission' } ]; return (
{/* Hero Section */}

Join UTAS Oman

Start your journey toward academic excellence and career success. Apply now for our world-class programs designed to meet Oman's Vision 2040 goals.

{/* Application Process */}

Application Process

Follow these simple steps to apply for your chosen program at UTAS Oman

{applicationSteps.map((step, index) => (
{step.step}

{step.title}

{step.timeline}

{step.description}

{index < applicationSteps.length - 1 && (
)}
))}
{/* Requirements Tabs */}

Entry Requirements

Requirements vary by program level. Select your study level below.

{/* Tab Navigation */}
{/* Tab Content */}
{activeTab === 'requirements' && (
{/* Undergraduate Requirements */}

Undergraduate Programs

{requirements.undergraduate.map((req, index) => (

{req.category}

    {req.items.map((item, itemIndex) => (
  • {item}
  • ))}
))}
{/* Postgraduate Requirements */}

Postgraduate Programs

{requirements.postgraduate.map((req, index) => (

{req.category}

    {req.items.map((item, itemIndex) => (
  • {item}
  • ))}
))}
)} {activeTab === 'documents' && (

Document Checklist

{documentChecklist.map((doc, index) => (
{doc.required ? ( ) : ( )}

{doc.document}

{doc.required ? 'Required' : 'Optional'}

{doc.note}

))}
)} {activeTab === 'deadlines' && (
{/* Important Dates */}

Important Dates

{importantDates.map((date, index) => (

{date.event}

{date.date}

))}
{/* Application Fees */}

Application Fees

{applicationFees.map((fee, index) => (

{fee.category}

{fee.note}

{fee.fee}

))}
)}
{/* Contact & Support */}

Need Help with Your Application?

Our admissions team is here to support you throughout the application process.

Call Us

+968 2414 3555

Mon-Thu: 8AM-4PM, Fri: 8AM-12PM

Email Us

admissions@utas.edu.om

Response within 24 hours

Visit Us

Campus Tours Available

Schedule your visit online

{/* Final CTA */}

Ready to Start Your Application?

Take the first step toward your future. Join UTAS Oman and be part of Oman's Vision 2040.

); }