Skip to content

updates#18

Merged
atharhive merged 1 commit intomainfrom
frontend
Mar 18, 2026
Merged

updates#18
atharhive merged 1 commit intomainfrom
frontend

Conversation

@atharhive
Copy link
Copy Markdown
Member

No description provided.

Copilot AI review requested due to automatic review settings March 18, 2026 17:03
@atharhive atharhive merged commit e756dc7 into main Mar 18, 2026
2 of 4 checks passed
Copy link
Copy Markdown
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

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 SkewCard styling/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>
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.

2 participants