{"id":29193922,"url":"https://github.com/intersectmbo/product-website","last_synced_at":"2026-03-02T17:33:39.375Z","repository":{"id":272477407,"uuid":"906229987","full_name":"IntersectMBO/product-website","owner":"IntersectMBO","description":null,"archived":false,"fork":false,"pushed_at":"2025-12-16T19:43:17.000Z","size":27563,"stargazers_count":2,"open_issues_count":2,"forks_count":10,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-19T14:19:13.593Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"SCSS","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/IntersectMBO.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-12-20T12:42:38.000Z","updated_at":"2025-12-16T19:41:53.000Z","dependencies_parsed_at":"2025-01-14T18:48:09.258Z","dependency_job_id":"14ed8ea7-7399-4039-9b7e-55d994a8e3e7","html_url":"https://github.com/IntersectMBO/product-website","commit_stats":null,"previous_names":["intersectmbo/product-website"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/IntersectMBO/product-website","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IntersectMBO%2Fproduct-website","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IntersectMBO%2Fproduct-website/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IntersectMBO%2Fproduct-website/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IntersectMBO%2Fproduct-website/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/IntersectMBO","download_url":"https://codeload.github.com/IntersectMBO/product-website/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IntersectMBO%2Fproduct-website/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30011965,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-02T17:00:27.440Z","status":"ssl_error","status_checked_at":"2026-03-02T17:00:03.402Z","response_time":60,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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-07-02T03:37:12.748Z","updated_at":"2026-03-02T17:33:39.368Z","avatar_url":"https://github.com/IntersectMBO.png","language":"SCSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Intersect Product Committee Website\n\nOfficial documentation website for the [Intersect Product Committee](https://product.cardano.intersectmbo.org) - a strategic initiative to define and communicate Cardano's Vision 2030.\n\n## About\n\nThis website serves as the primary platform for the Intersect Product Committee to:\n\n- Share the development of Cardano's long-term vision and strategy\n- Document community workshops and insights from around the world\n- Facilitate transparent collaboration on Cardano's strategic direction\n- Provide a central resource for Vision 2030 proposals and community feedback\n\n## Installation\n\n### Using Nix\n\nNix is a package manager that simplifies development workflows. It is supported\non most linux distributions (including NixOS), MacOS and WSL2 on Windows.\n\nInstall nix if you do not have it:\n\n```bash\ncurl -fsSL https://install.determinate.systems/nix | sh -s -- install --determinate\n```\n\nOnce you have Nix installed:\n\n```bash\ngit clone https://github.com/IntersectMBO/product-website.git\nnix develop\njust setup\njust run\n```\n\n### Using npm (Alternative for users with nodejs experience)\n\n```bash\n# Clone the repository\ngit clone https://github.com/IntersectMBO/product-website.git\ncd product-website\n\n# Install dependencies\nnpm install\n\n# Start the development server\nnpm start\n```\n\n## Prerequisites (if not using nix)\n\n- **Node.js**: Version 20.0 or higher\n- **npm** or **yarn**: Package manager (comes with Node.js)\n- **just**: Run project specific commands\n\n\n\n## Available Scripts\n\n| Command       | Description                                             |\n| ------------- | ------------------------------------------------------- |\n| `just setup`  | Install all dependencies locally in `node_modules` dir  |\n| `just run`    | Start the development server at `http://localhost:3000` |\n| `just build`  | Build the website for production                        |\n| `just serve`  | Serve the production build locally                      |\n| `just clear`  | Clear the Docusaurus cache                              |\n\n## Project Structure\n\n```\nproduct-website/\n├── docs/              # Documentation content (MDX/Markdown files)\n│   ├── vision/       # Vision 2030 documents\n│   └── workshops/    # Workshop summaries and outcomes\n├── src/\n│   ├── components/   # React components\n│   ├── css/          # SCSS stylesheets\n│   └── pages/        # Custom pages\n├── static/           # Static assets (images, fonts, icons)\n├── docusaurus.config.js  # Docusaurus configuration\n└── sidebars.js       # Sidebar navigation structure\n```\n\n## Development Workflow\n\n1. **Start the development server**: `just run`\n2. **Make your changes** to documentation or code\n3. **Preview locally** - changes auto-reload in the browser\n4. **Build to verify**: `just build` to ensure no errors\n5. **Submit a pull request** with your improvements\n\n## Contributing\n\nWe welcome contributions! Here are some ways you can help:\n\n- **Documentation**: Improve clarity, fix typos, add examples\n- **Workshops**: Add summaries from community workshops\n- **Design**: Enhance UI/UX, improve accessibility\n- **Code**: Fix bugs, add features, optimize performance\n\n### Making Changes\n\n1. Fork the repository\n2. Create a feature branch (`git checkout -b feature/your-feature-name`)\n3. Make your changes\n4. Commit with clear messages (`git commit -m \"Add: description of changes\"`)\n5. Push to your fork (`git push origin feature/your-feature-name`)\n6. Open a Pull Request\n\n## Technology Stack\n\n- **[Docusaurus 3](https://docusaurus.io/)**: Static site generator built with React\n- **React 19**: UI framework\n- **SCSS/Sass**: Styling\n- **Mermaid**: Diagram support\n- **TypeScript**: Type-safe development\n\n## Links\n\n- **Live Website**: https://product.cardano.intersectmbo.org\n- **GitHub Repository**: https://github.com/IntersectMBO/product-website\n- **Intersect**: https://www.intersectmbo.org\n- **Product Committee Docs**: https://productcommittee.docs.intersectmbo.org\n\n## License\n\nCopyright © 2025 Intersect Product Committee\n\n## Support\n\nFor questions or issues, please open an issue on GitHub or reach out through the Intersect community channels.\n\n---\n\nBuilt with ❤️ by the Cardano community using [Docusaurus](https://docusaurus.io/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fintersectmbo%2Fproduct-website","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fintersectmbo%2Fproduct-website","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fintersectmbo%2Fproduct-website/lists"}