{"id":30616480,"url":"https://github.com/augurproject/augur-reboot-website","last_synced_at":"2025-08-30T09:40:55.232Z","repository":{"id":307333411,"uuid":"1010719166","full_name":"AugurProject/augur-reboot-website","owner":"AugurProject","description":null,"archived":false,"fork":false,"pushed_at":"2025-08-25T17:24:54.000Z","size":1163,"stargazers_count":1,"open_issues_count":2,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-25T18:11:56.098Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Astro","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/AugurProject.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-06-29T16:59:56.000Z","updated_at":"2025-08-25T16:09:32.000Z","dependencies_parsed_at":"2025-07-30T19:11:45.043Z","dependency_job_id":null,"html_url":"https://github.com/AugurProject/augur-reboot-website","commit_stats":null,"previous_names":["augurproject/augur-reboot-website"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AugurProject/augur-reboot-website","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AugurProject%2Faugur-reboot-website","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AugurProject%2Faugur-reboot-website/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AugurProject%2Faugur-reboot-website/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AugurProject%2Faugur-reboot-website/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AugurProject","download_url":"https://codeload.github.com/AugurProject/augur-reboot-website/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AugurProject%2Faugur-reboot-website/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272833294,"owners_count":25000870,"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","status":"online","status_checked_at":"2025-08-30T02:00:09.474Z","response_time":77,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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-08-30T09:40:50.933Z","updated_at":"2025-08-30T09:40:55.210Z","avatar_url":"https://github.com/AugurProject.png","language":"Astro","readme":"# Augur Reboot Website\n\nThis repository contains the source code for the teaser website announcing the reboot of the Augur prediction market. The site serves as a retro-futuristic landing page showcasing the redevelopment of Augur and offering a glimpse into the future of decentralized forecasting.\n\nThe future home of the Augur platform will be: **[https://augur.net](https://augur.net)**\n\n---\n\n## Technical Architecture\n\nThis is a modern static website built with cutting-edge web technologies:\n\n- **Astro 5.10+** - Static site generator with selective client-side hydration\n- **React 19** - Interactive components with concurrent features\n- **Tailwind CSS 4.1** - Utility-first styling with @theme directive approach\n- **TypeScript** - Full type safety across components and utilities\n- **Nanostores** - Lightweight state management for cross-component communication\n\n### Deployment Strategy\n\nThe project supports dual deployment to maximize reach and reliability:\n\n- Cloudflare Pages with Wrangler integration\n- GitHub Pages with automated syncing from main branch\n\n## Key Features\n\n- **Retro-Futuristic Design**: CRT monitor aesthetics with power-on/off animations\n- **3D Perspective Grid**: WebGL-powered animated tunnel background\n- **Interactive Intro Sequence**: Terminal-style typewriter effects with smart skip functionality\n- **View Transitions**: Smooth page navigation with animation continuity\n- **Responsive Layout**: Optimized for desktop and mobile experiences\n- **Performance Optimized**: Static-first with selective hydration for interactivity\n\n## Project Structure\n\n```\nsrc/\n├── components/           # React and Astro components\n│   ├── *.astro          # Server-rendered static components\n│   └── *.tsx            # Client-hydrated interactive components\n├── pages/               # Route definitions\n│   ├── index.astro      # Landing page with intro sequence\n│   ├── mission.astro    # Technical roadmap\n│   └── team.astro       # Team information\n├── layouts/             # Base page layouts\n├── stores/              # Nanostores state management\n├── styles/              # Tailwind CSS with custom utilities\n└── assets/              # Static SVGs and resources\n```\n\n## Development\n\n### Prerequisites\n\n- [Node.js](https://nodejs.org/en/) (LTS version recommended)\n- [npm](https://www.npmjs.com/) (comes with Node.js)\n\n### Setup\n\n1. **Clone the repository:**\n   ```sh\n   git clone \u003crepository-url\u003e\n   cd \u003crepository-directory\u003e\n   ```\n\n2. **Install dependencies:**\n   ```sh\n   npm install\n   ```\n\n### Development Commands\n\nAll commands are run from the root of the project:\n\n| Command           | Action                                                    |\n| :---------------- | :-------------------------------------------------------- |\n| `npm run dev`     | Starts development server at `localhost:4321`            |\n| `npm run build`   | Builds production site to `./dist/`                      |\n| `npm run preview` | Builds and previews with Wrangler (Cloudflare)          |\n| `npm run deploy`  | Deploys to Cloudflare Pages                              |\n| `npm run cf-typegen` | Generates Cloudflare Worker types                     |\n\n### Development Workflow\n\nThe development server provides:\n- Hot module replacement for rapid iteration\n- TypeScript checking and error reporting\n- Tailwind CSS compilation with custom utilities\n- React component hydration in development mode\n\nFor development questions or issues, refer to the project documentation in the `docs/` directory or check the component implementations for usage patterns.\n\n### Styling System\n\nThe project uses Tailwind CSS 4.1 with a CSS-first approach:\n\n- **Global Styles**: Located in `src/styles/global.css`\n- **Theme Configuration**: Uses `@theme` directive instead of config files\n- **Custom Utilities**: Defined with `@utility` directive\n- **Component Styles**: Scoped styles within Astro components\n\n## Deployment\n\n### Dual Deployment Architecture\n\nThis project maintains two deployment targets:\n\n**Main Branch (Cloudflare Pages)**:\n- Primary deployment target\n- Uses `@astrojs/cloudflare` adapter\n- Optimized for edge computing and global CDN\n- Supports server-side rendering capabilities\n\n**GitHub Pages Branch**:\n- Automatically synced from main via GitHub Actions\n- Static site deployment with different base path configuration\n- Provides fallback hosting option\n- Uses GitHub's global CDN infrastructure\n\n### Automatic Syncing\n\nChanges to the main branch trigger an automated workflow that:\n1. Syncs source code changes to the `gh-pages` branch\n2. Preserves deployment-specific configurations\n3. Maintains both deployment targets without manual intervention\n4. Ensures consistency across both hosting platforms\n\n### Manual Deployment\n\nTo deploy manually to Cloudflare Pages:\n```sh\nnpm run deploy\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faugurproject%2Faugur-reboot-website","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faugurproject%2Faugur-reboot-website","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faugurproject%2Faugur-reboot-website/lists"}