import * as NavigationMenu from '@radix-ui/react-navigation-menu' import { Button, Text } from '@status-im/components' import { DownloadIcon, ExternalIcon } from '@status-im/icons' import { cx } from 'class-variance-authority' import { Logo } from '@/components/logo' import { NavMenu } from '@/components/nav-menu' import { PageFooter } from '@/components/page-footer' import { LINKS } from '@/config/links' import { Link } from '../components/link' import type { PageLayout } from 'next' export const AppLayout: PageLayout = page => { return ( <>
{Object.entries(LINKS).map(([name, links]) => ( {name} {links.map(link => { const external = link.href.startsWith('http') return ( {link.name} {external && ( )} ) })} ))}
{/* ROUNDED WHITE BG */} {/*
{page}
*/} {page}
) }