Navigation & Menu System

Primary Navigation Structure

Desktop Navigation

A HOME           /#home
B MISSION        /#mission  
C VALUE          /#demospay
D FEATURES       /#features
E CAPABILITIES   /#capabilities
RESOURCES       External link (Linktree)

Page Structure

/               → Homepage
/articles       Article archive
/dapps          dApp marketplace
/support        Support center
/terms          Terms of service
/products/:slug Product pages
/reading/:slug  Article reading pages
/docs-pages/:slug Documentation pages

Navigation Behavior

Menu States

  • Default: Clean, minimal navigation bar

  • Mobile Closed: Hamburger menu collapsed

  • Mobile Open: Full-screen navigation overlay

  • Docs Mobile: Documentation-specific mobile nav

  • Docs Mobile Open: Expanded docs navigation

Responsive Breakpoints

/* Desktop */
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-mobile { display: none; }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .nav-tablet { display: flex; }
}

/* Mobile */
@media (max-width: 767px) {
  .nav-desktop { display: none; }
  .nav-mobile { display: flex; }
}
FOOTER
[ CYA ]
© DEMOS. All rights reserved 2025