Components
Loading preview...
Here is Navigation Menu component
@reapollo
npx shadcn@latest add https://21st.dev/r/larsen66/navigation-menu-5// File 2: /demo/component-demo.tsx
import React from 'react';
import Component from '@/components/ui/navigation-menu-5';
function DemoPage() {
return (
<div className="flex flex-col items-center justify-start min-h-screen w-full bg-gray-200 dark:bg-gray-800 p-4 transition-colors duration-300">
<Component />
<div className="flex-grow flex items-center justify-center text-gray-700 dark:text-gray-300">
<p>This is a placeholder for content below the header.</p>
</div>
</div>
);
}
export default DemoPage;