Fix auth (add missing DB columns), remove emoji, update site description, remove music icon

This commit is contained in:
fullsizemalt 2025-12-26 20:06:41 -08:00
parent 60b5cb9961
commit 43e37f5c98
3 changed files with 5 additions and 6 deletions

View file

@ -20,8 +20,8 @@ const jetbrainsMono = JetBrains_Mono({
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Elmeg - Fandom Archive", title: "Elmeg",
description: "The ultimate fandom community platform.", description: "A Place to talk Goose",
}; };
export default function RootLayout({ export default function RootLayout({

View file

@ -211,7 +211,7 @@ export default async function PerformanceDetailPage({ params }: { params: Promis
</Link> </Link>
) : ( ) : (
<div className="flex-1 p-3 rounded-md bg-muted/50 text-center text-sm text-muted-foreground"> <div className="flex-1 p-3 rounded-md bg-muted/50 text-center text-sm text-muted-foreground">
Most Recent 🕐 Most Recent
</div> </div>
)} )}
</div> </div>

View file

@ -1,7 +1,7 @@
"use client" "use client"
import { useState } from "react" import { useState } from "react"
import Link from "next/link" import Link from "next/link"
import { Music, User, ChevronDown, Menu, X } from "lucide-react" import { User, ChevronDown, Menu, X } from "lucide-react"
import { Button } from "@/components/ui/button" import { Button } from "@/components/ui/button"
import { SearchDialog } from "@/components/ui/search-dialog" import { SearchDialog } from "@/components/ui/search-dialog"
import { NotificationBell } from "@/components/notifications/notification-bell" import { NotificationBell } from "@/components/notifications/notification-bell"
@ -34,8 +34,7 @@ export function Navbar() {
<div className="container mx-auto max-w-7xl px-4 sm:px-6 lg:px-8 flex h-14 items-center justify-between"> <div className="container mx-auto max-w-7xl px-4 sm:px-6 lg:px-8 flex h-14 items-center justify-between">
{/* Logo - always visible */} {/* Logo - always visible */}
<Link href="/" className="flex items-center space-x-2"> <Link href="/" className="flex items-center space-x-2">
<Music className="h-6 w-6" /> <span className="font-bold text-lg">Elmeg</span>
<span className="font-bold">Elmeg</span>
</Link> </Link>
{/* Desktop Navigation */} {/* Desktop Navigation */}