- 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.
12 lines
255 B
TypeScript
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>
|
|
);
|
|
} |