{"id":27962832,"url":"https://github.com/ccextractor/beacon-documentation","last_synced_at":"2025-05-07T19:57:25.718Z","repository":{"id":278442947,"uuid":"935632489","full_name":"CCExtractor/Beacon-Documentation","owner":"CCExtractor","description":"This repository contains the beacon project documentation.","archived":false,"fork":false,"pushed_at":"2025-02-19T19:30:14.000Z","size":228,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-07T19:57:22.019Z","etag":null,"topics":["beacon","documentation"],"latest_commit_sha":null,"homepage":"https://ccextractor-beacon-docs.netlify.app/","language":"JavaScript","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/CCExtractor.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}},"created_at":"2025-02-19T19:00:23.000Z","updated_at":"2025-02-19T19:31:17.000Z","dependencies_parsed_at":"2025-02-19T20:35:47.111Z","dependency_job_id":null,"html_url":"https://github.com/CCExtractor/Beacon-Documentation","commit_stats":null,"previous_names":["ccextractor/beacon-documentation"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CCExtractor%2FBeacon-Documentation","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CCExtractor%2FBeacon-Documentation/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CCExtractor%2FBeacon-Documentation/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CCExtractor%2FBeacon-Documentation/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CCExtractor","download_url":"https://codeload.github.com/CCExtractor/Beacon-Documentation/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252949307,"owners_count":21830150,"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":["beacon","documentation"],"created_at":"2025-05-07T19:57:25.268Z","updated_at":"2025-05-07T19:57:25.709Z","avatar_url":"https://github.com/CCExtractor.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Build Stunning Documentations With React \u0026 Docusaurus (Complete Guide)\n\nLearn how to create stunning documentation in minutes with React and Docusaurus. Spend more time building your product and less time writing your documentation.\n\n![Docusaurus](https://user-images.githubusercontent.com/47107420/267978511-9f934544-0fc4-44e1-84a1-150a4d9539d2.png)\n\n## Here’s What You’ll Learn 👨🏻‍💻\n\n- What is Docusaurus?\n- Install Docusaurus\n- Creating your own documentation\n- MDX (Markdown + JSX)\n- Import components into Markdown\n- Using tabs, alerts and codeblocks\n- Customizing the sidebar\n- Implementing a table of contents\n- Custom styling\n- Creating custom pages\n- Setting up the blog\n- SEO\n- Deployment\n\n## Change Homepage to Use Images Instead\n\nHere's an example, you can replace the images inside the array. Edit the located at `/src/components/HomepageFeatures/index.js`.\n\n```jsx\nimport React from 'react';\nimport clsx from 'clsx';\nimport styles from './styles.module.css';\n\nconst FeatureList = [\n  {\n    title: 'Easy to Use',\n    Image: require('@site/static/img/docusaurus-social-card.jpg').default,\n    description: (\n      \u003c\u003e\n        Docusaurus was designed from the ground up to be easily installed and\n        used to get your website up and running quickly.\n      \u003c/\u003e\n    ),\n  },\n  {\n    title: 'Focus on What Matters',\n    Image: require('@site/static/img/docusaurus-social-card.jpg').default,\n    description: (\n      \u003c\u003e\n        Docusaurus lets you focus on your docs, and we\u0026apos;ll do the chores. Go\n        ahead and move your docs into the \u003ccode\u003edocs\u003c/code\u003e directory.\n      \u003c/\u003e\n    ),\n  },\n  {\n    title: 'Powered by React',\n    Image: require('@site/static/img/docusaurus-social-card.jpg').default,\n    description: (\n      \u003c\u003e\n        Extend or customize your website layout by reusing React. Docusaurus can\n        be extended while reusing the same header and footer.\n      \u003c/\u003e\n    ),\n  },\n];\n\nfunction Feature({ Image, title, description }) {\n  return (\n    \u003cdiv className={clsx('col col--4')}\u003e\n      \u003cdiv className=\"text--center\"\u003e\n        \u003cimg src={Image} className={styles.featureImage} alt={title} /\u003e\n      \u003c/div\u003e\n      \u003cdiv className=\"text--center padding-horiz--md\"\u003e\n        \u003ch3\u003e{title}\u003c/h3\u003e\n        \u003cp\u003e{description}\u003c/p\u003e\n      \u003c/div\u003e\n    \u003c/div\u003e\n  );\n}\n\nexport default function HomepageFeatures() {\n  return (\n    \u003csection className={styles.features}\u003e\n      \u003cdiv className=\"container\"\u003e\n        \u003cdiv className=\"row\"\u003e\n          {FeatureList.map((props, idx) =\u003e (\n            \u003cFeature key={idx} {...props} /\u003e\n          ))}\n        \u003c/div\u003e\n      \u003c/div\u003e\n    \u003c/section\u003e\n  );\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fccextractor%2Fbeacon-documentation","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fccextractor%2Fbeacon-documentation","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fccextractor%2Fbeacon-documentation/lists"}