+
© {{ year }} OpenSquawk. Not for real-world aviation. *VATSIM/IVAO: trademarks of their respective owners.
@@ -1163,7 +1192,19 @@ import type {NewsPost} from '~~/shared/utils/news'
const api = useApi()
-const navLinks = [
+const GITHUB_URL = 'https://github.com/FaktorxMensch/OpenSquawk'
+
+interface NavLink {
+ label: string
+ to: string
+}
+
+interface ExtendedNavLink extends NavLink {
+ external?: boolean
+ icon?: string
+}
+
+const navLinks: NavLink[] = [
{label: 'Vision', to: '#features'},
{label: 'Roadmap', to: '#roadmap'},
{label: 'Plans', to: '#pricing'},
@@ -1171,6 +1212,11 @@ const navLinks = [
{label: 'FAQ', to: '#faq'},
]
+const mobileNavLinks = computed