Skip to content
This repository has been archived by the owner on Apr 17, 2024. It is now read-only.

Commit

Permalink
Update page title (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
JayJay1024 authored Apr 7, 2024
1 parent 77b4295 commit 97a06f5
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 18 deletions.
6 changes: 0 additions & 6 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,7 @@
import { Metadata } from "next";
import dynamic from "next/dynamic";

const PageSelect = dynamic(() => import("@/components/page-select"), { ssr: false });

export const metadata: Metadata = {
title: "Darwinia xToken - Helix Bridge",
description: "Darwinia xToken cross-chain powered by Helix Bridge.",
};

export default function Home() {
return <PageSelect />;
}
6 changes: 0 additions & 6 deletions src/app/records/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,6 @@ import Footer from "@/components/footer";
import Header from "@/components/header";
import RecordDetail from "@/components/record-detail";
import PageWrap from "@/ui/page-wrap";
import { Metadata } from "next";

export const metadata: Metadata = {
title: "Darwinia xToken - Helix Bridge",
description: "Darwinia xToken cross-chain powered by Helix Bridge.",
};

interface Props {
params: {
Expand Down
6 changes: 0 additions & 6 deletions src/app/records/page.tsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,10 @@
import Footer from "@/components/footer";
import Header from "@/components/header";
import PageWrap from "@/ui/page-wrap";
import { Metadata } from "next";
import dynamic from "next/dynamic";

const HistoryRecords = dynamic(() => import("@/components/history-records"));

export const metadata: Metadata = {
title: "Darwinia xToken - Helix Bridge",
description: "Darwinia xToken cross-chain powered by Helix Bridge.",
};

export default function RecordsPage() {
return (
<>
Expand Down

0 comments on commit 97a06f5

Please sign in to comment.