| 
 | 1 | +import type {  | 
 | 2 | +  KeyFeature,  | 
 | 3 | +  ProjectHistory,  | 
 | 4 | +  GetInvolved,  | 
 | 5 | +  MissionContent,  | 
 | 6 | +  Leaders,  | 
 | 7 | +  TechnologySection,  | 
 | 8 | +} from 'types/about'  | 
 | 9 | + | 
1 | 10 | export const aboutText = [  | 
2 | 11 |   'OWASP Nest was originally created by Arkadii Yakovets (Ark) to simplify OWASP projects navigation. Built from scratch based on Ark’s vision and discussions with Starr Brown (Starr), the platform integrates structured system design into the OWASP ecosystem. The initial frontend, based on Vue.js, was introduced by Kateryna Golovanova (Kate), who later became the project co-leader due to her invaluable frontend and project management skills.',  | 
3 | 12 |   'Over time, OWASP Nest has expanded to address broader community needs, such as Google Summer of Code (GSoC) student guidance and contribution opportunities discovery. The platform, alongside NestBot, has become a central hub for OWASP projects, chapters, users, and aggregated contribution opportunities.',  | 
4 | 13 |   'The code is licensed under the MIT License, encouraging contributions while protecting the authors from legal claims. All OWASP Nest leaders are certified ISC2 professionals and OWASP members who adhere to the OWASP Code of Conduct.',  | 
5 | 14 | ]  | 
6 | 15 | 
 
  | 
 | 16 | +export const missionContent: MissionContent = {  | 
 | 17 | +  mission:  | 
 | 18 | +    'OWASP Nest is a comprehensive platform built to enhance collaboration and streamline contributions across the OWASP community. Acting as a central hub, it helps users discover projects, find contribution opportunities, and connect with like-minded individuals based on their interests and expertise.',  | 
 | 19 | +  whoItsFor:  | 
 | 20 | +    "OWASP Nest is designed for developers, designers, technical writers, students, security professionals, and contributors of all backgrounds. Whether you're just starting out or a seasoned OSS veteran, Nest provides intuitive tools to help you engage meaningfully in the OWASP ecosystem.",  | 
 | 21 | +} as const  | 
 | 22 | + | 
 | 23 | +export const keyFeatures: KeyFeature[] = [  | 
 | 24 | +  {  | 
 | 25 | +    title: 'Advanced Search Capabilities',  | 
 | 26 | +    description:  | 
 | 27 | +      'Easily filter and explore projects or issues using keywords, tags, and contributor preferences.',  | 
 | 28 | +  },  | 
 | 29 | +  {  | 
 | 30 | +    title: 'Slack Integration',  | 
 | 31 | +    description:  | 
 | 32 | +      'Stay connected through a Slack bot that delivers updates and supports both direct and channel messaging.',  | 
 | 33 | +  },  | 
 | 34 | +  {  | 
 | 35 | +    title: 'OWASP Chapters Proximity Page',  | 
 | 36 | +    description: 'Discover and connect with nearby OWASP chapters for local engagement.',  | 
 | 37 | +  },  | 
 | 38 | +  {  | 
 | 39 | +    title: 'AI-Generated Insights',  | 
 | 40 | +    description:  | 
 | 41 | +      'Benefit from AI-powered summaries and actionable suggestions for tackling project issues.',  | 
 | 42 | +  },  | 
 | 43 | +]  | 
 | 44 | + | 
 | 45 | +export const getInvolvedContent: GetInvolved = {  | 
 | 46 | +  description:  | 
 | 47 | +    "OWASP Nest thrives thanks to community-driven contributions. Here's how you can make an impact:",  | 
 | 48 | +  ways: [  | 
 | 49 | +    'Code Contributions – Fix bugs or build new features',  | 
 | 50 | +    'Code Review – Improve quality by reviewing pull requests',  | 
 | 51 | +    'Documentation – Create or enhance onboarding guides and tutorials',  | 
 | 52 | +    'Issue Reporting – Report bugs or propose improvements',  | 
 | 53 | +    'Community Engagement – Join Slack discussions and provide feedback',  | 
 | 54 | +  ],  | 
 | 55 | +  callToAction:  | 
 | 56 | +  'To get started, visit the [OWASP Nest Repository](https://github.com/OWASP/Nest), explore the [Contributing Guidelines](https://github.com/OWASP/Nest/blob/main/CONTRIBUTING.md), and review the [Code of Conduct](https://github.com/OWASP/Nest/blob/main/CODE_OF_CONDUCT.md).',  | 
 | 57 | +}  | 
 | 58 | + | 
 | 59 | +export const projectHistory: ProjectHistory[] = [  | 
 | 60 | +  {  | 
 | 61 | +    title: 'Project Inception',  | 
 | 62 | +    description:  | 
 | 63 | +      'Initial brainstorming and vision by Arkadii Yakovets (Ark) & Starr Brown to solve OWASP project navigation challenges',  | 
 | 64 | +    year: 'Jan 2023',  | 
 | 65 | +  },  | 
 | 66 | +  {  | 
 | 67 | +    title: 'Backend MVP',  | 
 | 68 | +    description:  | 
 | 69 | +      'Backend foundations built using Python, Django, DRF with AI capabilities integrated',  | 
 | 70 | +    year: 'Mar 2023',  | 
 | 71 | +  },  | 
 | 72 | +  {  | 
 | 73 | +    title: 'Frontend Development',  | 
 | 74 | +    description:  | 
 | 75 | +      'Frontend initially developed by Kateryna Golovanova (Kate) using Vue.js, later transitioned to React',  | 
 | 76 | +    year: 'Sep 2024',  | 
 | 77 | +  },  | 
 | 78 | +  {  | 
 | 79 | +    title: 'Platform Integrations',  | 
 | 80 | +    description: 'Slack & Algolia integrations implemented for enhanced user experience',  | 
 | 81 | +    year: 'Nov 2024',  | 
 | 82 | +  },  | 
 | 83 | +  {  | 
 | 84 | +    title: 'GSoC Integration',  | 
 | 85 | +    description: 'Scaled to support Google Summer of Code and streamline contributor onboarding',  | 
 | 86 | +    year: 'Dec 2024',  | 
 | 87 | +  },  | 
 | 88 | +]  | 
 | 89 | + | 
7 | 90 | export const technologies = [  | 
8 | 91 |   {  | 
9 | 92 |     section: 'Backend',  | 
 | 
0 commit comments