feat: move to nextjs
This commit is contained in:
17
app/layout.tsx
Normal file
17
app/layout.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import { IndexLayout as IndexLayoutC } from "@/components/layouts/IndexLayout";
|
||||
import { getMetadata } from "@/utils";
|
||||
|
||||
export const metadata = getMetadata({
|
||||
title: "Impersonator",
|
||||
description:
|
||||
"Impersonate any Ethereum Account and Login into DApps via WalletConnect, iframe or Extension!",
|
||||
images: "https://www.impersonator.xyz/metaIMG.PNG",
|
||||
});
|
||||
|
||||
export default function IndexLayout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return <IndexLayoutC>{children}</IndexLayoutC>;
|
||||
}
|
||||
Reference in New Issue
Block a user