Skip to content

Commit

Permalink
chore: github logos (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
crypblizz8 authored Dec 2, 2024
1 parent 2467dd1 commit b9b4f56
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
19 changes: 18 additions & 1 deletion examples/nextjs/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import type { Metadata } from "next";
import "./globals.css";
// import { ClientWrapper } from "./components/ClientWrapper";

export const metadata: Metadata = {
title: "Create Nillion App",
Expand All @@ -15,6 +14,24 @@ export default function RootLayout({
return (
<html lang="en">
<body>
<header className="flex justify-end items-center p-4 pr-6">
<a
href="https://github.com/NillionNetwork/create-nillion-app"
target="_blank"
rel="noopener noreferrer"
>
<img
src="/lightmode-github.svg"
className="w-10 h-10 block dark:hidden"
alt="GitHub Icon (Light Mode)"
/>
<img
src="/darkmode-github.svg"
className="w-10 h-10 hidden dark:block"
alt="GitHub Icon (Dark Mode)"
/>
</a>
</header>
{children}
</body>
</html>
Expand Down
1 change: 1 addition & 0 deletions examples/nextjs/public/darkmode-github.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions examples/nextjs/public/lightmode-github.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b9b4f56

Please sign in to comment.