Added website ICP filing module

This commit is contained in:
beliker
2023-04-16 17:24:59 +08:00
parent b751861bfb
commit b4d408743a
4 changed files with 46 additions and 1 deletions

View File

@@ -3,6 +3,7 @@ import { Analytics } from "@vercel/analytics/react";
import { Home } from "./components/home";
import { getServerSideConfig } from "./config/server";
import BottomRecord from "@/app/components/beian";
const serverConfig = getServerSideConfig();
@@ -11,6 +12,7 @@ export default async function App() {
<>
<Home />
{serverConfig?.isVercel && <Analytics />}
<BottomRecord />
</>
);
}