diff --git a/apps/www/app/_components/demo-card.tsx b/apps/www/app/_components/demo-card.tsx index 2e735a5..61ac3ab 100644 --- a/apps/www/app/_components/demo-card.tsx +++ b/apps/www/app/_components/demo-card.tsx @@ -17,7 +17,7 @@ export default function DemoCard({ name, Component }: FormDemoItem) { className="absolute inset-0 z-10" />
-
+
{Component}
{name} diff --git a/apps/www/app/layout.tsx b/apps/www/app/layout.tsx index 52c9837..cf3858b 100644 --- a/apps/www/app/layout.tsx +++ b/apps/www/app/layout.tsx @@ -22,12 +22,8 @@ export const metadata: Metadata = { }, ], icons: { - icon: [ - { url: "/ui/favicon-16x16.png", sizes: "16x16", type: "image/png" }, - { url: "/ui/favicon-32x32.png", sizes: "32x32", type: "image/png" }, - ], - shortcut: "/ui/favicon.ico", - apple: "/ui/apple-touch-icon.png", + icon: "/favicon.ico", + // TODO: add more icons }, manifest: "/ui/site.webmanifest", } @@ -40,9 +36,9 @@ export default function RootLayout({ return ( -
-
-
+
+
+
diff --git a/apps/www/components/header.tsx b/apps/www/components/header.tsx new file mode 100644 index 0000000..a5656fe --- /dev/null +++ b/apps/www/components/header.tsx @@ -0,0 +1,33 @@ +import { TagIcon } from "@heroicons/react/16/solid" +import Link from "next/link" + +import GitHubIcon from "@/components/icons/github" + +export default function Header() { + return ( +
+
+
+ + logo +

+ HeadcnUI +

+ + + v0.1 + + +
+ + + +
+
+ ) +} diff --git a/apps/www/components/site-header.tsx b/apps/www/components/site-header.tsx index 383db31..ab3928e 100644 --- a/apps/www/components/site-header.tsx +++ b/apps/www/components/site-header.tsx @@ -8,7 +8,12 @@ export default function SiteHeader() {
- + logo

HeadcnUI