Conversation
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR replaces the default Next.js starter homepage with a custom AIRES @ Brown landing page layout and introduces reusable UI components (navigation, buttons, blog/project cards) to support the new design.
Changes:
- Rebuilt
app/page.tsxinto a multi-section homepage (hero, about strip, projects, team, blog). - Added new shared components (
Button,ReadMore,ProjectComp,PrimaryBlog,BlogComp,Navbar,Social) to compose the homepage. - Updated layout/component import paths to align with the
app/componentsdirectory structure.
Reviewed changes
Copilot reviewed 8 out of 13 changed files in this pull request and generated 6 comments.
Show a summary per file
| File | Description |
|---|---|
| app/page.tsx | New homepage structure with hero/projects/team/blog sections. |
| app/layout.tsx | Points Navbar/Footer imports at app/components. |
| app/components/Navbar.tsx | Adds a responsive, sticky navigation bar with active link styling. |
| app/components/Footer.tsx | Updates Social import path to match new component location. |
| app/components/Button.tsx | Adds a reusable button component with optional navigation behavior. |
| app/components/ReadMore.tsx | Adds a “Read More” button component with routing/external navigation handling. |
| app/components/ProjectComp.tsx | Adds a project card component used on the homepage. |
| app/components/PrimaryBlog.tsx | Adds a primary blog feature card component. |
| app/components/BlogComp.tsx | Adds a secondary blog card component for the blog list. |
| app/components/Social.tsx | Adds a social row component (icon + link text). |
💡 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
+38
to
+39
| if (target === "_blank") { | ||
| window.open(href, "_blank"); |
Comment on lines
+21
to
+23
| const isExternal = /^https?:\/\//i.test(href); | ||
| if (target === "_blank" || isExternal) { | ||
| window.open(href, "_blank"); |
Comment on lines
+20
to
+24
| <img | ||
| src={imageSrc} | ||
| alt={imageAlt} | ||
| className="w-[120px] h-[120px] sm:w-[140px] sm:h-[140px] lg:w-[163px] lg:h-[163px] object-cover rounded-2xl shrink-0" | ||
| /> |
Comment on lines
+16
to
+20
| <img | ||
| src={imageSrc} | ||
| alt={imageAlt} | ||
| className="w-full aspect-square object-cover rounded-xl border-2 border-white mx-auto" | ||
| /> |
Comment on lines
+18
to
+22
| <img | ||
| src={imageSrc ?? "/PBlog.png"} | ||
| alt={imageAlt ?? "Blog Post Image"} | ||
| className="w-full aspect-[708/369] object-cover rounded-md mb-4" | ||
| /> |
Comment on lines
+98
to
+100
| <img | ||
| src="/team-picture.png" | ||
| alt="AI Team Picture" |
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.
Updated scale