Skip to content

Commit

Permalink
Update Main.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
zkSoju committed May 3, 2023
1 parent f1a85c4 commit e87684e
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions components/layouts/Main.tsx
Original file line number Diff line number Diff line change
@@ -1,21 +1,10 @@
import Head from "next/head";
import { useRouter } from "next/router";

const Main = ({ children }: { children: React.ReactNode }) => {
const router = useRouter();
const path = router.asPath;

return (
<div className="mx-auto">
<Head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Dove Interface</title>

</Head>

{children}
</div>
);
return <div className="mx-auto">{children}</div>;
};

export default Main;

1 comment on commit e87684e

@vercel
Copy link

@vercel vercel bot commented on e87684e May 3, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

dove-interface – ./

dove-interface-apeiro.vercel.app
dove-interface-git-main-apeiro.vercel.app
dove-interface-eight.vercel.app

Please sign in to comment.