diff --git a/apps/web/src/components/footer/Footer.tsx b/apps/web/src/components/footer/Footer.tsx index 8ac25e4a4cf326b437c044f5be4043b2708e7e51..aeae5cd3fd4c72079c893256201a1298656e375b 100644 --- a/apps/web/src/components/footer/Footer.tsx +++ b/apps/web/src/components/footer/Footer.tsx @@ -14,7 +14,7 @@ export const Footer: React.FC = ({ items = [], className, ...props
-
+
{SOCIAL_MEDIAS.map((social, index) => ( = ({ items = [], return (
diff --git a/apps/web/src/components/navigation/NavigationItem.tsx b/apps/web/src/components/navigation/NavigationItem.tsx index ba840551faae086d5f893ba61b4397ca9c7f2ec9..1a27d8d704ad32ea2468be8dd4065b3ea4a100c8 100644 --- a/apps/web/src/components/navigation/NavigationItem.tsx +++ b/apps/web/src/components/navigation/NavigationItem.tsx @@ -116,5 +116,16 @@ export const NavigationItem: React.FC = ({ ); } + // Plain text (no link) - used for section titles + if (!isButton && !to && name) { + return ( +
+ + {name} + +
+ ); + } + return null; }; diff --git a/apps/web/src/components/root/RootVoicesOfHive.tsx b/apps/web/src/components/root/RootVoicesOfHive.tsx index b67424423cbfa8db40f7a6b7995d3ea1274b10ed..d91f28dcffea0060266561cfd47943ffa7bffd7d 100644 --- a/apps/web/src/components/root/RootVoicesOfHive.tsx +++ b/apps/web/src/components/root/RootVoicesOfHive.tsx @@ -142,10 +142,10 @@ export function RootVoicesOfHive({ setIsFading(false); }, 300); }} - className="p-2 sm:p-3 rounded-full bg-gray-50 hover:bg-gray-100 transition-colors border border-gray-200" + className="p-2 sm:p-3 rounded-full bg-gray-100 hover:bg-gray-200 transition-colors cursor-pointer" aria-label="Previous voice" > - + )} @@ -155,7 +155,7 @@ export function RootVoicesOfHive({ className={`max-w-3xl w-full min-h-[280px] sm:min-h-[300px] transition-opacity duration-300 ${isFading ? 'opacity-0' : 'opacity-100'}`} > {/* Message Bubble with Author inside */} -
+
{/* Author - Inside bubble */}
@@ -203,10 +203,10 @@ export function RootVoicesOfHive({ setIsFading(false); }, 300); }} - className="p-2 sm:p-3 rounded-full bg-gray-50 hover:bg-gray-100 transition-colors border border-gray-200" + className="p-2 sm:p-3 rounded-full bg-gray-100 hover:bg-gray-200 transition-colors cursor-pointer" aria-label="Next voice" > - + )}
diff --git a/apps/web/src/lib/data/navigation.ts b/apps/web/src/lib/data/navigation.ts index 6d4172d1ccac4e8feb81ee228f0f219b69c0c5ee..042307ebb73507b1499bfc9602fd83a8ed16dd50 100644 --- a/apps/web/src/lib/data/navigation.ts +++ b/apps/web/src/lib/data/navigation.ts @@ -151,9 +151,12 @@ export const NAVIGATION_HEADER = [ */ export const NAVIGATION_FOOTER = [ [ + { + name: 'Learn', + }, { to: 'about', - name: 'Learn More', + name: 'About', }, { to: 'join', @@ -192,64 +195,56 @@ export const NAVIGATION_FOOTER = [ ], [ { - to: 'eco', - name: 'Ecosystem', + name: 'Build', }, { - to: 'roadmap', - name: 'Roadmap', + to: 'https://developers.hive.io', + name: 'Documentation', }, { - to: 'hbd', - name: 'Hive Dollar (HBD)', + to: 'https://hive.io/whitepaper.pdf', + name: 'Whitepaper', }, { - to: 'https://explore.openhive.network', - name: 'Block Explorer', + to: 'https://hive.blue/docs/technical-vision.pdf', + name: 'Technical Vision', }, { - to: 'https://explore.openhive.network/witnesses', - name: 'Governance', + to: 'https://github.com/openhive-network/hive', + name: 'GitHub', }, - // { - // to: 'https://whyhive.co/', - // name: 'Why Hive', - // }, - /* { - to: 'eco', - name: 'dApps Statistics' - }, */ - ], - [ { - to: 'wallets', - name: 'Wallets', + to: 'https://gitlab.hive.io', + name: 'GitLab', }, ], [ { - to: 'developers', - name: 'Developer', + name: 'Ecosystem', }, { - to: 'https://developers.hive.io', - name: 'Documentation', + to: 'eco', + name: 'Overview', }, { - to: 'https://hive.io/whitepaper.pdf', - name: 'Whitepaper', + to: 'roadmap', + name: 'Roadmap', }, { - to: 'https://hive.blue/docs/technical-vision.pdf', - name: 'Technical Vision', + to: 'hbd', + name: 'Hive Dollar (HBD)', }, { - to: 'https://github.com/openhive-network/hive', - name: 'GitHub', + to: 'https://explore.openhive.network', + name: 'Block Explorer', }, { - to: 'https://gitlab.hive.io', - name: 'GitLab', + to: 'https://explore.openhive.network/witnesses', + name: 'Governance', + }, + { + to: 'wallets', + name: 'Wallets', }, ], ]