- Added CreatorLayout component for consistent layout structure. - Created CreatorPage with a simple header. - Introduced TrashPage with tabs for managing trashed items, including images and empty states. - Developed Navbar component for navigation with search functionality and notifications. - Added RecentDesign component to display recent designs with action buttons. - Implemented SideNav component to house Sidebar and RecentDesign. - Created Sidebar component for navigation links with responsive design. - Added Input component for consistent styling across forms. - Updated package.json to include new dependencies and set package manager.
9 lines
111 B
TypeScript
9 lines
111 B
TypeScript
|
|
export default function Home() {
|
|
return (
|
|
<div className="flex">
|
|
<div>Home</div>
|
|
</div>
|
|
);
|
|
}
|