-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## 🚀 feat: Add complete layout and user panel components
🛠️ **This commit includes the following changes:** - Implemented layout components to structure the application interface, providing a consistent visual layout across all pages. - Created user panel components to facilitate user interaction and management within the application. - Populated various pages with fake data to simulate realistic scenarios and ensure functionality across different sections. - Enhanced overall styling and visual elements to improve the user experience and interface aesthetics. 👍 **These changes establish a robust foundation for the application layout and user panel, offering a structured interface for users to navigate and interact with various features. The integration of fake data ensures that the functionality is tested under realistic conditions, while the visual enhancements contribute to a more engaging user experience.**
- Loading branch information
1 parent
99150ee
commit d1acc04
Showing
35 changed files
with
2,393 additions
and
115 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
54 changes: 54 additions & 0 deletions
54
LibraryTrackingApp/src/frontend/constants/meSidebarItems.jsx
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
import { | ||
FaBook, | ||
FaClock, | ||
FaExchangeAlt, | ||
FaHistory, | ||
FaQuestionCircle, | ||
FaUser, | ||
FaUsers, | ||
} from "react-icons/fa"; | ||
|
||
export const meSidebarItems = [ | ||
{ | ||
title: "Profil Yönetimi", | ||
icon: <FaUser />, | ||
href: "/me/profile", | ||
target: "_self", | ||
subItems: [], | ||
}, | ||
{ | ||
title: "Kütüphane Yönetimi", | ||
icon: <FaBook />, | ||
href: "/me/library", | ||
target: "_self", | ||
subItems: [], | ||
}, | ||
{ | ||
title: "Kitap Alım ve Teslim", | ||
icon: <FaExchangeAlt />, | ||
href: "/me/borrow", | ||
target: "_self", | ||
subItems: [], | ||
}, | ||
{ | ||
title: "Geçmiş Alınan Kitaplar", | ||
icon: <FaHistory />, | ||
href: "/me/past-books", | ||
target: "_self", | ||
subItems: [], | ||
}, | ||
{ | ||
title: "Destek", | ||
icon: <FaQuestionCircle />, | ||
href: "/me/support", | ||
target: "_self", | ||
subItems: [], | ||
}, | ||
{ | ||
title: "Sosyalleşme", | ||
icon: <FaUsers />, | ||
href: "/me/social", | ||
target: "_self", | ||
subItems: [], | ||
}, | ||
]; |
This file contains 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
Oops, something went wrong.