feat: move to nextjs

This commit is contained in:
apoorvlathey
2024-05-07 00:18:18 +10:00
parent 602ae4389e
commit 032785a316
49 changed files with 9867 additions and 8425 deletions

17
app/layout.tsx Normal file
View 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>;
}