wodey-prototype/components/sideNav.tsx
iamkiddy a5364ba345 feat: update dependencies and add new icons
- Added `lucide-react` dependency.
- Updated `next` version to 15.3.1.
- Added new icons: design-icon.png, home-icon.png, logo.png, menu-icon.png.
- Added recent images: recent-image-1.png, recent-image-2.png, recent-image-3.png, recent-image-4.png, recent-image-5.png.
- Updated devDependencies: added `@eslint/eslintrc`, `@tailwindcss/postcss`, and ensured `typescript` is included.
2025-04-26 20:18:30 +00:00

12 lines
255 B
TypeScript

import Sidebar from "./sidebar";
import RecentDesign from "./recentDesign";
export default function SideNav() {
return (
<div className="flex flex-col md:flex-row">
<Sidebar />
<RecentDesign />
</div>
);
}