Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds new landing-page UI sections/components to showcase product “Technology” and “Vision”, refreshes the existing gradient feature cards, and introduces a new animated footer for navigation and social links.
Changes:
- Introduces new reusable UI components: feature grid cards, vision bento grid, and animated footer.
- Updates
SkewCardstyling/animations in the gradient card showcase. - Expands the landing page with a Technology section, Vision section, and new footer integration.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 6 comments.
Show a summary per file
| File | Description |
|---|---|
| frontend/components/ui/vision-bento-grid.tsx | New “Vision” bento grid section and card UI. |
| frontend/components/ui/modem-animated-footer.tsx | New animated footer component with nav + social links and brand block. |
| frontend/components/ui/grid-feature-cards.tsx | New feature card/grid pattern component plus in-view animation wrapper. |
| frontend/components/ui/gradient-card-showcase.tsx | Visual/animation refresh for SkewCard. |
| frontend/app/page.tsx | Landing page layout updates to include Technology, Vision, and footer. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
You can also share your feedback on Copilot code review. Take the survey.
Comment on lines
+127
to
132
| <Link | ||
| href="#architecture" | ||
| className="hover:text-white transition-colors" | ||
| > | ||
| Developers | ||
| Architecture | ||
| </Link> |
| height={24} | ||
| strokeWidth="1.5" | ||
| stroke="currentColor" | ||
| className={cn("text-white/20 size-6", className)} |
Comment on lines
+60
to
+66
| {socialLinks.length > 0 && ( | ||
| <div className="flex mb-8 mt-3 gap-4"> | ||
| {socialLinks.map((link, index) => ( | ||
| <Link | ||
| key={index} | ||
| href={link.href} | ||
| className="text-muted-foreground hover:text-foreground transition-colors" |
Comment on lines
+79
to
+86
| {navLinks.length > 0 && ( | ||
| <div className="flex flex-wrap justify-center gap-4 text-sm font-medium text-muted-foreground max-w-full px-4"> | ||
| {navLinks.map((link, index) => ( | ||
| <Link | ||
| key={index} | ||
| className="hover:text-foreground duration-300 hover:font-semibold" | ||
| href={link.href} | ||
| > |
Comment on lines
73
to
81
| <style dangerouslySetInnerHTML={{ __html: ` | ||
| @keyframes blob { | ||
| 0%, 100% { transform: translateY(10px); } | ||
| 50% { transform: translate(-10px); } | ||
| @keyframes subtle-float { | ||
| 0%, 100% { transform: translateY(0); } | ||
| 50% { transform: translateY(-10px); } | ||
| } | ||
| .group:hover .relative.z-20 { | ||
| animation: subtle-float 6s ease-in-out infinite; | ||
| } | ||
| .animate-blob { animation: blob 4s ease-in-out infinite; } | ||
| .animation-delay-1000 { animation-delay: -2s; } | ||
| `}} /> |
Comment on lines
+101
to
+107
| <Link | ||
| href={creatorUrl} | ||
| target="_blank" | ||
| className="text-base text-muted-foreground hover:text-foreground transition-colors duration-300 hover:font-medium" | ||
| > | ||
| Crafted by {creatorName} | ||
| </Link> |
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.
No description provided.