import React from "react" import { Router } from "@reach/router" import { PrivateRoute, PrivateRouteComponent } from "gatsby-theme-auth0-ts" import { Layout } from "../components/layout" const Home: PrivateRouteComponent = ({ user }) => { return

Hi, {user.profile.nickname ? user.profile.nickname : "friend"}!

} const Settings = () =>

Settings

const Billing = () =>

Billing

const Account = () => { return ( ) } export default Account