-
Couldn't load subscription status.
- Fork 35.8k
www.fitvestmoda.com #273151
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
www.fitvestmoda.com #273151
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR transforms the VS Code repository into a simple static website preview for "FITVEST" (fitvestmoda.com.br). The changes replace the entire VS Code codebase with a minimal landing page, PowerShell HTTP server, Next.js configuration, DNS documentation, and Firebase integration stubs.
Key changes:
- Complete replacement of VS Code's package.json with a minimal Next.js project configuration
- Addition of static HTML landing pages and a PowerShell-based HTTP server
- Introduction of DNS zone documentation and Firebase configuration examples
Reviewed Changes
Copilot reviewed 7 out of 10 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| package.json | Replaces VS Code dependencies with Next.js, React, and Firebase |
| serve.ps1 | Adds a PowerShell HTTP server for local file serving |
| index.html | Creates a Portuguese landing page linking to fitvestmoda.com.br |
| public/view-site.html | Adds another landing page variant with similar content |
| README.md | Replaces VS Code documentation with FITVEST project setup instructions |
| DNS_ZONE.md | Documents DNS records for the fitvestmoda.com domain |
| .env.example | Provides Firebase environment variable template |
| <body> | ||
| <h1>Link para o Site:</h1> | ||
| <p>Clique no botão abaixo para abrir o site:</p> | ||
| <a href="https://www.fitvest.com" target="_blank" aria-label="Abrir site no navegador"> |
Copilot
AI
Oct 24, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The URL points to 'https://www.fitvest.com' but the PR title and other files reference 'fitvestmoda.com.br'. This inconsistency will result in users being directed to the wrong domain.
| <a href="https://www.fitvest.com" target="_blank" aria-label="Abrir site no navegador"> | |
| <a href="https://www.fitvestmoda.com.br" target="_blank" aria-label="Abrir site no navegador"> |
| 1) Abrir diretamente no navegador (Windows PowerShell): | ||
|
|
||
| ```powershell | ||
| Set-Location -Path 'C:\Users\Usuario\OneDrive\Desktop\FITVEST' |
Copilot
AI
Oct 24, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hardcoded absolute paths like 'C:\Users\Usuario\OneDrive\Desktop\FITVEST' make the documentation non-portable. Replace with relative path instructions or use $PSScriptRoot in the PowerShell examples.
No description provided.