Skip to content
This repository has been archived by the owner on Jan 2, 2025. It is now read-only.

Commit

Permalink
fix(typo): change the word collactor to collator (#87)
Browse files Browse the repository at this point in the history
Co-authored-by: Hamid Roohi <hamidroohi71@gmail.com>
  • Loading branch information
nblogist and hamidroohi92 authored Mar 30, 2024
1 parent bb6e06f commit 7a42cfc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ import Header from "@/components/header";
const fontJetBrainsMono = JetBrains_Mono({ subsets: ["latin", "latin-ext"] });

export const metadata = {
title: "Collactor Staking - Darwinia",
description: "Collactor staking of Darwinia and Crab network",
title: "Collator Staking - Darwinia",
description: "Collator staking of Darwinia and Crab network",
manifest: "/manifest.json",
};

export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en" className="bg-app-black text-white">
<html lang="en" className="text-white bg-app-black">
<body className={fontJetBrainsMono.className}>
<AppProvider>
<RainbowProvider>
Expand Down
4 changes: 2 additions & 2 deletions src/components/login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ export default function Login() {
<>
<button
onClick={() => openConnectModal && openConnectModal()}
className="bg-primary px-large py-middle text-sm font-bold text-white transition-opacity hover:opacity-80 active:opacity-60"
className="text-sm font-bold text-white transition-opacity bg-primary px-large py-middle hover:opacity-80 active:opacity-60"
>
Connect Wallet
</button>
<p className="text-center text-xs font-light text-[#FFFDFD]">
Connect wallet to participate in collactor staking and deposit in Darwinia.
Connect wallet to participate in Collator staking and deposit in Darwinia.
</p>
</>
);
Expand Down

0 comments on commit 7a42cfc

Please sign in to comment.