Skip to content

Commit

Permalink
More small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
luloxi committed Jan 12, 2024
1 parent f5d112a commit 8873264
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
11 changes: 8 additions & 3 deletions packages/nextjs/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ type HeaderMenuLink = {

export const menuLinks: HeaderMenuLink[] = [
{
label: "Home",
label: "Play!",
href: "/",
},
{
Expand Down Expand Up @@ -91,8 +91,13 @@ export const Header = () => {
<Image alt="SE2 logo" className="cursor-pointer" fill src="/logo.svg" />
</div>
<div className="flex flex-col">
<span className="font-bold leading-tight">Scaffold-ETH</span>
<span className="text-xs">Ethereum dev stack</span>
<span className="font-bold leading-tight">TicTacToe</span>
<span className="text-xs">
Made with{" "}
<Link className={"underline"} href="https://scaffoldeth.io/">
Scaffold-ETH 2
</Link>
</span>
</div>
</Link>
<ul className="hidden lg:flex lg:flex-nowrap menu menu-horizontal px-1 gap-2">
Expand Down
4 changes: 2 additions & 2 deletions packages/nextjs/components/MetaHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ type MetaHeaderProps = {
const baseUrl = process.env.NEXT_PUBLIC_VERCEL_URL ? `https://${process.env.NEXT_PUBLIC_VERCEL_URL}/` : "/";

export const MetaHeader = ({
title = "Scaffold-ETH 2 App",
title = "TicTacToe on SE-2",
description = "Built with 🏗 Scaffold-ETH 2",
image = "thumbnail.jpg",
image = "background.jpg",
twitterCard = "summary_large_image",
children,
}: MetaHeaderProps) => {
Expand Down

0 comments on commit 8873264

Please sign in to comment.