diff --git a/src/app/page.tsx b/src/app/page.tsx index c9f8e49..6971777 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -24,9 +24,11 @@ interface CardProps { children?: React.ReactNode, className?: string, heading: string, + disabled?: boolean, } -const LandingCard: FC = ({ heading, children, className, buttonText, buttonLink }) => { +const LandingCard: FC = ({ heading, children, className, buttonText, buttonLink, disabled = false }) => { + console.log(heading, disabled); return ( @@ -34,7 +36,7 @@ const LandingCard: FC = ({ heading, children, className, buttonText, {children} - @@ -123,20 +125,23 @@ export default function Home() { ); diff --git a/src/components/Navbar/index.tsx b/src/components/Navbar/index.tsx index 9a785cc..469a2c0 100644 --- a/src/components/Navbar/index.tsx +++ b/src/components/Navbar/index.tsx @@ -139,6 +139,7 @@ export const Navbar : FC = () => {

Cuiloa

+ {/* NOTE: the 5px of padding-top is to better align the smaller text with the text above, please keep it. */}

A Block Explorer For Penumbra