Migration from static github page to angular project#1
Merged
Conversation
Initializes a new Angular project configured to use Bun as the runtime and server-side rendering (SSR). This setup includes: - Project structure, basic app component, and related files. - Bun lockfile. - A comprehensive .gitignore file. - Project-specific guidance for Claude, Cursor, Gemini and Copilot. - Moved old landing to landing.old
Relocates project configuration and related files from the `corvid-site` subdirectory to the root directory, streamlining the project structure and improving accessibility of essential files.
This commit migrates the project to a static site generation approach. It removes server-side rendering and updates the Angular configuration to output a static site. This simplifies deployment and reduces server costs while maintaining the application's functionality.
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR migrates a static HTML landing page to an Angular application architecture. The migration preserves the existing NFT collection whitepaper functionality while establishing a proper Angular project structure for future development.
- Converts static HTML website to Angular standalone components
- Sets up TypeScript configuration and build system with Angular CLI
- Preserves existing landing page functionality including charts and interactive elements
Reviewed Changes
Copilot reviewed 29 out of 36 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| package.json | Defines Angular 20.3 project dependencies and build scripts |
| angular.json | Angular CLI configuration with build and test targets |
| src/main.ts | Angular application bootstrap entry point |
| src/index.html | HTML template with external CDN dependencies |
| src/app/app.* | Main application component with routing setup |
| src/app/components/static-landing/* | Landing page component converted from static HTML |
| src/styles.scss | Global SCSS styles with color variables |
| tsconfig.*.json | TypeScript configuration for app and testing |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
removed duplicated test file Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Contributor
🫨 |
Fixed public assets link Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
removed typo Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
0xLeif
approved these changes
Oct 14, 2025
Contributor
0xLeif
left a comment
There was a problem hiding this comment.
Looked good from what you showed me... LFG!!!
This was referenced Mar 2, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Created the necessary files and setup for the angular project