import React from "react"; const About = () => { return (
{/* Hero Section */}

Welcome to Our Travel Policy

Structured, efficient, and research-focused travel planning.

{/* Mission & Vision */}

Our Approach

Our travel policy for research students and associates ensures a structured process for approvals and financial support, fostering efficiency and alignment with academic and research objectives.

Travel Policy
{/* Achievements & History */}

Policy Highlights

{[ { title: "Travel Request Form", description: "Submit detailed forms including purpose, destination, budget, and supporting documentation.", icon: "📄", }, { title: "Approval Process", description: "Supervisor, department head, and Office of Research must approve for major travels.", icon: "✔️", }, { title: "Financial Support", description: "Eligibility depends on travel relevance, available funds, and research alignment.", icon: "💰", }, { title: "Documentation", description: "Attach conference invitations or research collaboration letters for approval.", icon: "📜", }, { title: "International Travel", description: "Managed through the Office of Research for additional oversight and funding.", icon: "✈️", }, { title: "Funding Sources", description: "Includes department funds, institutional grants, or scholarships.", icon: "🏛️", }, ].map((item, index) => (
{item.icon}

{item.title}

{item.description}

))}
{/* Why Choose Us */}

Why Our Policy Stands Out

{[ { title: "Efficiency", description: "Streamlined processes for quicker approvals.", }, { title: "Clarity", description: "Clear guidelines for both students and staff.", }, { title: "Supportive", description: "Ensures financial and logistical aid for research-related travel.", }, { title: "Global Outlook", description: "Facilitates international collaborations and exchanges.", }, { title: "Comprehensive", description: "Covers all aspects of academic travel management.", }, { title: "Transparent", description: "Approval criteria and funding sources clearly defined.", }, ].map((item, index) => (

{item.title}

{item.description}

))}
{/* Back to Top */}
); }; export default About;