diff --git a/components/PartyDetails/index.tsx b/components/PartyDetails/index.tsx index 76412763..d7f11131 100644 --- a/components/PartyDetails/index.tsx +++ b/components/PartyDetails/index.tsx @@ -1,4 +1,5 @@ import React, { useState } from 'react' +import Head from 'next/head' import { useSnapshot } from 'valtio' import classNames from 'classnames' @@ -106,6 +107,11 @@ const PartyDetails = (props: Props) => { return (
+ + + { (appSnapshot.party.name != null) ? appSnapshot.party.name : 'Untitled team'} by { (appSnapshot.party.user != null) ? `@${appSnapshot.party.user?.username}` : 'Anonymous' } + + {readOnly} {editable}
diff --git a/pages/[username].tsx b/pages/[username].tsx index bdfba180..f1781e28 100644 --- a/pages/[username].tsx +++ b/pages/[username].tsx @@ -1,4 +1,5 @@ import React, { useCallback, useEffect, useState } from 'react' +import Head from 'next/head' import { useRouter } from 'next/router' import { useCookies } from 'react-cookie' @@ -117,6 +118,9 @@ const ProfileRoute: React.FC = () => { return (
+ + @{user.username} +
{ @@ -9,6 +10,9 @@ const NewRoute = () => { return (
+ + New Team +
) diff --git a/pages/p/[party].tsx b/pages/p/[party].tsx index 9bbad2e0..564e538e 100644 --- a/pages/p/[party].tsx +++ b/pages/p/[party].tsx @@ -1,4 +1,5 @@ import React from 'react' +import Head from 'next/head' import { useRouter } from 'next/router' import Party from '~components/Party' @@ -8,6 +9,9 @@ const PartyRoute: React.FC = () => { return (
+ + Party +
) diff --git a/pages/saved.tsx b/pages/saved.tsx index b9ec1735..bb1d884f 100644 --- a/pages/saved.tsx +++ b/pages/saved.tsx @@ -1,4 +1,5 @@ import React, { useCallback, useEffect, useState } from 'react' +import Head from 'next/head' import { useRouter } from 'next/router' import { useCookies } from 'react-cookie' import clonedeep from 'lodash.clonedeep' @@ -141,8 +142,12 @@ const SavedRoute: React.FC = () => { return (
+ + Your saved Teams + + -

Your saved teams

+

Your saved Teams

diff --git a/pages/teams.tsx b/pages/teams.tsx index 41874e17..6d4dd0d7 100644 --- a/pages/teams.tsx +++ b/pages/teams.tsx @@ -1,4 +1,5 @@ import React, { useCallback, useEffect, useState } from 'react' +import Head from 'next/head' import { useRouter } from 'next/router' import { useCookies } from 'react-cookie' import clonedeep from 'lodash.clonedeep' @@ -141,6 +142,9 @@ const TeamsRoute: React.FC = () => { return (
+ + Discover Teams +

Discover Teams