Skip to content

Conversation

@092vk
Copy link
Member

@092vk 092vk commented Dec 3, 2025

No description provided.

@netlify
Copy link

netlify bot commented Dec 3, 2025

Deploy Preview for gobuildprod ready!

Name Link
🔨 Latest commit 934cec3
🔍 Latest deploy log https://app.netlify.com/projects/gobuildprod/deploys/6931b9e1689afd0008e62a4b
😎 Deploy Preview https://deploy-preview-123--gobuildprod.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@092vk
Copy link
Member Author

092vk commented Dec 3, 2025

@copilot review it

Copy link
Contributor

Copilot AI commented Dec 3, 2025

@092vk I've opened a new pull request, #124, to work on those changes. Once the pull request is ready, I'll request review from you.

Copy link
Contributor

Copilot AI left a 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 pull request adds mobile app promotion functionality to the GoBuild website by introducing a new downloadable app component and integrating app download links throughout the site.

  • Created a new GoBuildDownloadApp component featuring an interactive phone mockup with floating cards, testimonial, QR code, and Play Store badge
  • Integrated the app download component into the Contact Us and About Us pages
  • Added a Play Store download badge to the footer for consistent visibility across the site

Reviewed changes

Copilot reviewed 4 out of 9 changed files in this pull request and generated 8 comments.

Show a summary per file
File Description
src/components/GoBuildDownloadApp.tsx New component showcasing the mobile app with animated elements, QR code, and download links
src/pages/ContactUs.tsx Added GoBuildDownloadApp component to contact page
src/pages/AboutUs.tsx Added GoBuildDownloadApp component to about page
src/components/Footer.tsx Added Play Store badge with proper accessibility attributes
public/AppScanner.jpg New QR code image asset for app downloads

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.


{/* Invisible Button Overlay */}
<a
href="https://play.google.com/store/apps/details?id=com.go_build_app_version"
Copy link

Copilot AI Dec 3, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Play Store URL is hardcoded in multiple places (lines 32, 114). Consider extracting this to a constant at the top of the file or in a configuration file to ensure consistency and easier maintenance.

Copilot uses AI. Check for mistakes.
</div>
</div>
</section> */}
<GoBuildDownloadApp/>
Copy link

Copilot AI Dec 3, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing space before the opening tag. The formatting should be <GoBuildDownloadApp /> instead of <GoBuildDownloadApp/>.

Suggested change
<GoBuildDownloadApp/>
<GoBuildDownloadApp />

Copilot uses AI. Check for mistakes.
092vk and others added 3 commits December 4, 2025 08:16
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 4 out of 9 changed files in this pull request and generated 6 comments.


💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

</div>
{/* Play Store Badge */}
<a
href="https://play.google.com/store/apps/details?id=com.go_build_app_version"
Copy link

Copilot AI Dec 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Play Store URL is hardcoded here and is the same URL used in GoBuildDownloadApp.tsx (lines 32 and 114). This creates code duplication across multiple files. Consider extracting this URL to a shared configuration file or constants file to maintain consistency and ease future updates.

Copilot uses AI. Check for mistakes.
</div>
</div>
</section>
<GoBuildDownloadApp/>
Copy link

Copilot AI Dec 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] Missing space after the opening tag. The component should have consistent spacing. Add a space after <GoBuildDownloadApp and before /> for consistency with JSX formatting standards.

Suggested change
<GoBuildDownloadApp/>
<GoBuildDownloadApp />

Copilot uses AI. Check for mistakes.
Comment on lines +103 to +104
<div className="mt-12 p-6 rounded-2xl backdrop-blur-xl bg-white/40
border border-white/20 shadow-xl flex items-center justify-center gap-10">
Copy link

Copilot AI Dec 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] The div class string is split across two lines unnecessarily. Consider reformatting for better readability, either keeping it on one line or using a more consistent multi-line format.

Suggested change
<div className="mt-12 p-6 rounded-2xl backdrop-blur-xl bg-white/40
border border-white/20 shadow-xl flex items-center justify-center gap-10">
<div className="mt-12 p-6 rounded-2xl backdrop-blur-xl bg-white/40 border border-white/20 shadow-xl flex items-center justify-center gap-10">

Copilot uses AI. Check for mistakes.
Comment on lines +113 to +123
<motion.a
href="https://play.google.com/store/apps/details?id=com.go_build_app_version"
whileHover={{ scale: 1.07 }}
className="transition-transform"
>
<img
src="/AppBadge(blue).png"
alt="Get it on Play Store"
className="w-40 rounded-xl shadow-lg"
/>
</motion.a>
Copy link

Copilot AI Dec 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Play Store badge link lacks accessibility attributes. Add aria-label="Download GoBuild App on Google Play Store" to provide context for screen reader users and improve accessibility.

Copilot uses AI. Check for mistakes.
092vk and others added 4 commits December 4, 2025 21:10
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
@092vk 092vk merged commit edf1c63 into main Dec 4, 2025
4 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants