Skip to content

Homepage #8

Open
demed223 wants to merge 14 commits intomainfrom
homepage
Open

Homepage #8
demed223 wants to merge 14 commits intomainfrom
homepage

Conversation

@demed223
Copy link
Collaborator

Updated scale

demed223 and others added 13 commits March 15, 2026 01:13
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>
Copilot AI review requested due to automatic review settings March 15, 2026 20:40
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 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.tsx into 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/components directory 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"
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