Welcome to Portal.js!
Rapidly build rich data portals using a modern frontend framework!
import { useState } from 'react' import Head from 'next/head' import Link from 'next/link' import styles from '../styles/Home.module.css' export default function Home() { const [open, setOpen] = useState(false); const handleClick = (event) => { event.preventDefault(); setOpen(!open); }; const navMenu = [{ title: 'Home', path: '/' }, { title: 'Gallery', path: '/gallery' }, { title: 'Docs', path: '/docs' }, { title: 'Learn', path: '/learn' }, { title: 'Github', path: 'https://github.com/datopian/portal.js' }] return ( <>
Rapidly build rich data portals using a modern frontend framework!