Closed leetebbs closed 1 month ago
The latest updates on your projects. Learn more about Vercel for Git ↗︎
Name | Status | Preview | Comments | Updated (UTC) |
---|---|---|---|---|
rustcrab | ✅ Ready (Inspect) | Visit Preview | 💬 Add feedback | Oct 1, 2024 7:02pm |
The changes involve the complete removal of the PeopleSection
component from the Home
function in src/app/page.tsx
, along with the deletion of its implementation file src/components/PeopleSection.tsx
. Additionally, references to the PeopleSection
in the mobile and desktop navigation components have been eliminated, specifically removing the corresponding menu items from both MobileNav.tsx
and Navbar.tsx
. The overall layout and functionality of the remaining components are preserved.
File | Change Summary |
---|---|
src/app/page.tsx |
Removed the PeopleSection component from the Home function. |
src/components/PeopleSection.tsx |
Deleted the PeopleSection component file, which displayed profiles of individuals. |
src/components/navbar/MobileNav.tsx |
Removed { items: 'People', link: '/#people' } from the menuItems array in the mobile navigation. |
src/components/navbar/Navbar.tsx |
Removed { items: "People", link: "/#people" } from the menuItems array in the desktop navigation. |
PeopleSection
component and modifies src/app/page.tsx
to include it, which is directly related to the removal of the PeopleSection
in the main PR.src/app/page.tsx
to reorganize the rendering of sections, including PeopleSection
, which connects to the changes made in the main PR regarding the layout of the Home
component.src/data/people.ts
file by removing a duplicate entry for Francesco Ciulla, which relates to the PeopleSection
component that was removed in the main PR.🐇 In a garden so bright,
The PeopleSection took flight.
With menus now trimmed,
The layout's not dimmed,
Just a hop and a skip,
New paths we now grip! 🌼
Remove the People Section component and from both navbars .
Fixes # 163
Summary by CodeRabbit
New Features
Bug Fixes
Chores
PeopleSection
component from the homepage layout.Documentation