{"id":27441305,"url":"https://github.com/ndevu12/paiowebsite","last_synced_at":"2025-07-18T10:08:58.199Z","repository":{"id":287457892,"uuid":"964726785","full_name":"Ndevu12/PAIOWebsite","owner":"Ndevu12","description":"Pan African Informatics Olympiad","archived":false,"fork":false,"pushed_at":"2025-04-11T20:51:46.000Z","size":107,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-14T23:46:21.123Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Ndevu12.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-11T17:25:16.000Z","updated_at":"2025-04-11T20:51:49.000Z","dependencies_parsed_at":"2025-04-11T21:35:01.937Z","dependency_job_id":null,"html_url":"https://github.com/Ndevu12/PAIOWebsite","commit_stats":null,"previous_names":["ndevu12/paiowebsite"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ndevu12%2FPAIOWebsite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ndevu12%2FPAIOWebsite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ndevu12%2FPAIOWebsite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ndevu12%2FPAIOWebsite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Ndevu12","download_url":"https://codeload.github.com/Ndevu12/PAIOWebsite/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248981259,"owners_count":21193143,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-04-14T23:46:23.989Z","updated_at":"2025-04-14T23:46:24.660Z","avatar_url":"https://github.com/Ndevu12.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Pan African Informatics Olympiad (PAIO) Website\n\n![PAIO Website](https://img.shields.io/badge/PAIO-2025-blue)\n![Next.js](https://img.shields.io/badge/Next.js-15.2.0-black)\n![TailwindCSS](https://img.shields.io/badge/TailwindCSS-3.4.1-38bdf8)\n![License](https://img.shields.io/badge/License-MIT-green)\n\nOfficial website for the Pan African Informatics Olympiad (PAIO) 2025, a prestigious informatics competition that brings together talented young programmers from across the African continent.\n\n## 📋 Table of Contents\n\n- [Features](#-features)\n- [Technologies Used](#-technologies-used)\n- [Getting Started](#-getting-started)\n- [Project Structure](#-project-structure)\n- [Documentation](#-documentation)\n- [Contributing](#-contributing)\n- [License](#-license)\n\n## ✨ Features\n\n- **Modern Design**: Fully responsive design with fluid animations powered by Framer Motion\n- **Multi-language Support**: Support for different languages\n- **Official Documents**: Access to competition regulations and documents in multiple languages\n- **Competition Information**: Details about eligibility, team composition, and competition format\n- **Key Dates**: Timeline of important dates related to the competition\n- **Frequently Asked Questions**: Comprehensive FAQ section\n- **Contact Information**: Multiple ways to get in touch with the organizers\n\n## 🛠 Technologies Used\n\n- **Framework**: Next.js 15.2.0\n- **Styling**: TailwindCSS 3.4.1\n- **Animation**: Framer Motion\n- **Icons**: Lucide React\n- **UI Components**: Custom components and shadcn/ui\n- **TypeScript**: For type safety and better development experience\n\n## 🚀 Getting Started\n\n### Prerequisites\n\n- Node.js 18.x or later\n- npm, yarn, or bun package manager\n\n### Installation\n\n1. Clone the repository:\n\n```bash\ngit clone \u003crepository-url\u003e\ncd PAIOWebsite\n```\n\n2. Install dependencies:\n\n```bash\nnpm install\n# or\nyarn install\n# or\nbun install\n```\n\n3. Start the development server:\n\n```bash\nnpm run dev\n# or\nyarn dev\n# or\nbun dev\n```\n\n4. Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.\n\n## 📂 Project Structure\n\n```\nPAIOWebsite/\n├── src/                    # Source files\n│   ├── app/                # Next.js App Router\n│   │   ├── regulations/    # Regulations page\n│   │   ├── important-dates/# Important dates page\n│   │   ├── sponsors/       # Sponsors page\n│   │   ├── faqs/           # FAQs page\n│   │   ├── contact/        # Contact page\n│   │   ├── media/          # Media page\n│   │   ├── visiting-south-africa/ # Visiting info page\n│   │   ├── globals.css     # Global styles\n│   │   ├── layout.tsx      # Root layout\n│   │   └── page.tsx        # Homepage\n│   ├── components/         # Reusable components\n│   │   ├── Footer.tsx      # Footer component\n│   │   ├── Navbar.tsx      # Navigation component\n│   │   ├── LanguageSelector.tsx # Language selector\n│   │   └── ui/             # UI components\n│   └── lib/                # Utility functions and libraries\n│       └── utils.ts        # Utility functions\n├── public/                 # Static assets\n│   └── AOA.svg             # African Olympiad Academy logo\n├── build/                  # Build output\n├── next.config.js          # Next.js configuration\n├── tailwind.config.ts      # Tailwind CSS configuration\n├── tsconfig.json           # TypeScript configuration\n└── package.json            # Project dependencies\n```\n\n## 📚 Documentation\n\n### Pages\n\n- **Home**: Introduction to PAIO with key information and registration links\n- **Regulations**: Official competition rules and guidelines\n- **Important Dates**: Timeline of registration deadlines and competition dates\n- **Sponsors**: Information about sponsors and supporting organizations\n- **FAQs**: Answers to frequently asked questions about the competition\n- **Contact**: Ways to get in touch with the organization team\n- **Visiting South Africa**: Information for participants visiting South Africa\n- **Media**: Press releases and news about the competition\n\n### Adding Content\n\n#### Adding New Regulations Documents\n\n1. Update the document links in `src/app/regulations/page.tsx`:\n\n```jsx\n\u003cmotion.a\n  href=\"http://example.com/path/to/document.pdf\"\n  target=\"_blank\"\n  rel=\"noopener noreferrer\"\n  whileHover={{ scale: 1.02 }}\n  whileTap={{ scale: 0.98 }}\n  className=\"inline-flex items-center px-4 py-2 bg-gradient-to-r from-green-600 to-teal-600 hover:from-green-700 hover:to-teal-700 text-white font-medium rounded-lg transition-all shadow-sm\"\n\u003e\n  \u003cDownload className=\"mr-2 h-4 w-4\" /\u003e\n  Download\n\u003c/motion.a\u003e\n```\n\n#### Updating Important Dates\n\n1. Modify the dates in `src/app/important-dates/page.tsx`:\n\n```jsx\n\u003ctr className=\"transition-colors hover:bg-blue-50/30\"\u003e\n  \u003ctd className=\"py-4 px-6 whitespace-nowrap text-sm font-medium text-gray-900\"\u003e\n    Sat, Sep 13\n  \u003c/td\u003e\n  \u003ctd className=\"py-4 px-6 whitespace-nowrap text-sm text-gray-500\"\u003e\n    —\n  \u003c/td\u003e\n  \u003ctd className=\"py-4 px-6 whitespace-nowrap text-sm text-gray-700 font-medium\"\u003e\n    Contest Start\n  \u003c/td\u003e\n\u003c/tr\u003e\n```\n\n## 🤝 Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add some amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## 📄 License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n\n---\n\nCreated and maintained by the Pan African Informatics Olympiad committee © 2025\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fndevu12%2Fpaiowebsite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fndevu12%2Fpaiowebsite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fndevu12%2Fpaiowebsite/lists"}