// app/(dashboard)/page.tsx
import { IdeaFeed } from '@/components/dashboard/idea-feed';
import { RightSidebar } from '@/components/dashboard/right-sidebar';

export default function DashboardPage() {
  return (
    <>
      {/* Feed */}
      <div className="flex-1 max-w-2xl mx-auto lg:mx-0">
        <IdeaFeed />
      </div>

      {/* Right Sidebar */}
      <div className="hidden xl:block">
        <RightSidebar />
      </div>
    </>
  );
}