- Updated SearchBar component to use max-width and height utilities for better responsiveness. - Adjusted ArtistsPage layout to include container for consistent padding and spacing. - Modified BestSeller and NewRelease components to use grid layout for better item arrangement. - Enhanced Frame component layout and styling for improved visual hierarchy. - Refined HomeBanner component for better spacing and text sizing. - Improved Navbar component with mobile menu functionality and responsive design. - Updated RecentDesign and SideNav components for better mobile experience and layout. - Enhanced Sidebar component with mobile menu toggle and improved navigation links. - Refactored marketplace Navbar to include mobile menu and improved layout for icons and buttons.
9 lines
205 B
TypeScript
9 lines
205 B
TypeScript
import Frame from "./Frame";
|
|
|
|
export default function PlayGround() {
|
|
return (
|
|
<div className="w-full px-4 sm:px-6 md:px-8 lg:px-12 mt-12 sm:mt-16 md:mt-20 lg:mt-24">
|
|
<Frame />
|
|
</div>
|
|
);
|
|
} |