build: upgraded next version from 12.2.2 to 13

This commit is contained in:
venkatesh-soulpage 2022-12-01 01:06:28 +05:30
parent c35ac50c7e
commit fd7f892893
26 changed files with 1484 additions and 1760 deletions

View file

@ -11,20 +11,16 @@ const DefaultTopBar: React.FC = () => {
<div className="flex justify-between items-center px-4 h-16 sm:px-6 md:justify-start md:space-x-10 absolute top-0 w-full">
<div className="w-full flex items-center justify-between">
<div>
<Link href="/">
<a className="flex">
<span className="sr-only">Plane</span>
<h2 className="text-2xl font-semibold">
Plan<span className="text-indigo-600">e</span>
</h2>
</a>
<Link href="/" className="flex">
<span className="sr-only">Plane</span>
<h2 className="text-2xl font-semibold">
Plan<span className="text-indigo-600">e</span>
</h2>
</Link>
</div>
{user && (
<div>
<p className="text-sm text-gray-500">
logged in as {user.first_name}
</p>
<p className="text-sm text-gray-500">logged in as {user.first_name}</p>
</div>
)}
</div>