Skip to content

Commit

Permalink
update logo
Browse files Browse the repository at this point in the history
  • Loading branch information
calvo-jp committed Feb 29, 2024
1 parent a7f853d commit 5819a6c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions website/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ import {Providers} from './providers';

export const metadata: Metadata = {
title: {
default: '@untitled-theme',
template: '@untitled-theme | %s',
default: 'Untitled Theme',
template: 'Untitled Theme | %s',
},
description: 'Untitled UI icons for React and Svelte',
metadataBase: new URL('https://untitled-theme-docs.vercel.app'),
openGraph: {
type: 'website',
title: '@untitled-theme',
title: 'Untitled Theme',
description: 'Untitled UI icons for React and Svelte',
images: ['/opengraph.png'],
},
Expand Down
6 changes: 4 additions & 2 deletions website/src/app/navbar.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import {Asterisk02Icon} from '@untitled-theme/icons-react';
import Link from 'next/link';
import {ThemePicker} from './theme-picker';

Expand All @@ -6,9 +7,10 @@ export function Navbar() {
<header className="sticky top-0 z-sticky flex h-16 items-center gap-2 border-b bg-white/75 p-4 backdrop-blur-sm dark:bg-gray-true-900/80">
<Link
href="/"
className=" dark:text-brand-500rounded-sm bg-gray-true-100 px-3.5 py-2 font-mono text-sm text-brand-700 dark:bg-gray-true-700/10 dark:text-brand-500"
className="flex items-center rounded-sm bg-gray-true-100 px-3.5 py-2 font-mono text-sm text-brand-700 dark:bg-gray-true-700/10 dark:text-brand-500"
>
@untitled-theme
<span>@untitled-theme/icons-</span>
<Asterisk02Icon className="h-3 w-3" />
</Link>

<div className="grow" />
Expand Down

0 comments on commit 5819a6c

Please sign in to comment.