test links
This commit is contained in:
		@@ -11,7 +11,7 @@ const navigationItems = [
 | 
				
			|||||||
  { name: 'Home', href: '/' },
 | 
					  { name: 'Home', href: '/' },
 | 
				
			||||||
  { name: 'Features', href: '/features' },
 | 
					  { name: 'Features', href: '/features' },
 | 
				
			||||||
  { name: 'Usecases', href: '/usecases' },
 | 
					  { name: 'Usecases', href: '/usecases' },
 | 
				
			||||||
  { name: 'Community', href: '/community' },
 | 
					  { name: 'Community', href: 'community' },
 | 
				
			||||||
];
 | 
					];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export function Header() {
 | 
					export function Header() {
 | 
				
			||||||
@@ -60,16 +60,11 @@ export function Header() {
 | 
				
			|||||||
            </button>
 | 
					            </button>
 | 
				
			||||||
          </div>
 | 
					          </div>
 | 
				
			||||||
          <div className="flex flex-col p-6 space-y-4">
 | 
					          <div className="flex flex-col p-6 space-y-4">
 | 
				
			||||||
            {navigationItems.map((item) => (
 | 
					             {navigationItems.map((item) => (
 | 
				
			||||||
              <a
 | 
					      <Link key={item.name} href={item.href}>
 | 
				
			||||||
                key={item.name}
 | 
					        <a>{item.name}</a>
 | 
				
			||||||
                href={item.href}
 | 
					      </Link>
 | 
				
			||||||
                className="text-purple-600 hover:text-purple-800 text-lg font-semibold"
 | 
					    ))}
 | 
				
			||||||
                onClick={() => setMobileMenuOpen(false)}
 | 
					 | 
				
			||||||
              >
 | 
					 | 
				
			||||||
                {item.name}
 | 
					 | 
				
			||||||
              </a>
 | 
					 | 
				
			||||||
            ))}
 | 
					 | 
				
			||||||
            <Button href="#" className="mt-4 btn-gradient-dark">
 | 
					            <Button href="#" className="mt-4 btn-gradient-dark">
 | 
				
			||||||
              Join OurVerse
 | 
					              Join OurVerse
 | 
				
			||||||
            </Button>
 | 
					            </Button>
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user