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

Commit

Permalink
feat: pricing features on pricing cards
Browse files Browse the repository at this point in the history
  • Loading branch information
Irere123 committed Oct 26, 2024
1 parent e173856 commit 4d64fa1
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
8 changes: 7 additions & 1 deletion packages/nextjs/app/(app)/account/page.client.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
/* eslint-disable prettier/prettier */
"use client";

import { useState } from "react";
import { Address } from "viem";
import { useAccount, useDisconnect } from "wagmi";
import { Balance } from "~~/components/scaffold-eth";
import { AddressQRCodeModal } from "~~/components/scaffold-eth/RainbowKitCustomConnectButton/AddressQRCodeModal";
import { AddressInput } from "~~/components/scaffold-eth";
import { AddressInfoDropdown } from "~~/components/scaffold-eth/RainbowKitCustomConnectButton/AddressInfoDropdown";
import { AddressQRCodeModal } from "~~/components/scaffold-eth/RainbowKitCustomConnectButton/AddressQRCodeModal";

/* eslint-disable prettier/prettier */

// import { Address } from "~~/components/scaffold-eth";

export const AccountPageClient: React.FC = () => {
Expand All @@ -27,6 +32,7 @@ export const AccountPageClient: React.FC = () => {
Disconnect
</button>
</div>
<AddressInfoDropdown blockExplorerAddressLink="" displayName="" address={connectedAddress as Address} />
</div>
);
};
4 changes: 3 additions & 1 deletion packages/nextjs/app/(app)/onboarding/page.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
import { Metadata } from "next";
import { ClaimRoleCard } from "~~/components/dashboard/ClaimRoleCard";

export const metadata: Metadata = {
title: "Welcome abroad!",
};
export default function OnBoadingPage() {
return (
<div className="w-full min-h-screen flex justify-center items-center">
<ClaimRoleCard />
<ClaimRoleCard />
</div>
);
}
}
1 change: 1 addition & 0 deletions packages/nextjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"blo": "~1.0.1",
"burner-connector": "~0.0.8",
"daisyui": "4.12.10",
"ethers": "5.7.2",
"framer-motion": "^11.11.10",
"lucide-react": "^0.453.0",
"next": "~14.2.11",
Expand Down
1 change: 1 addition & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2985,6 +2985,7 @@ __metadata:
eslint-config-next: ~14.0.4
eslint-config-prettier: ~8.5.0
eslint-plugin-prettier: ~4.2.1
ethers: 5.7.2
framer-motion: ^11.11.10
lucide-react: ^0.453.0
next: ~14.2.11
Expand Down

0 comments on commit 4d64fa1

Please sign in to comment.