ui/ create footer component

This commit is contained in:
Leon van Zyl
2025-08-17 09:51:17 +02:00
parent 8a65a51f2d
commit ce92f0ce26
4 changed files with 142 additions and 138 deletions

View File

@@ -1,7 +1,6 @@
import Link from "next/link";
import { UserProfile } from "@/components/auth/user-profile";
import { ModeToggle } from "./ui/mode-toggle";
import { GitHubStars } from "./ui/github-stars";
export function SiteHeader() {
return (
@@ -17,7 +16,6 @@ export function SiteHeader() {
</h1>
<div className="flex items-center gap-4">
<UserProfile />
<GitHubStars repo="leonvanzyl/nextjs-better-auth-postgresql-starter-kit" />
<ModeToggle />
</div>
</div>