Fix auth (add missing DB columns), remove emoji, update site description, remove music icon
This commit is contained in:
parent
60b5cb9961
commit
43e37f5c98
3 changed files with 5 additions and 6 deletions
|
|
@ -20,8 +20,8 @@ const jetbrainsMono = JetBrains_Mono({
|
|||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Elmeg - Fandom Archive",
|
||||
description: "The ultimate fandom community platform.",
|
||||
title: "Elmeg",
|
||||
description: "A Place to talk Goose",
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
|
|
|
|||
|
|
@ -211,7 +211,7 @@ export default async function PerformanceDetailPage({ params }: { params: Promis
|
|||
</Link>
|
||||
) : (
|
||||
<div className="flex-1 p-3 rounded-md bg-muted/50 text-center text-sm text-muted-foreground">
|
||||
Most Recent 🕐
|
||||
Most Recent
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
"use client"
|
||||
import { useState } from "react"
|
||||
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 { SearchDialog } from "@/components/ui/search-dialog"
|
||||
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">
|
||||
{/* Logo - always visible */}
|
||||
<Link href="/" className="flex items-center space-x-2">
|
||||
<Music className="h-6 w-6" />
|
||||
<span className="font-bold">Elmeg</span>
|
||||
<span className="font-bold text-lg">Elmeg</span>
|
||||
</Link>
|
||||
|
||||
{/* Desktop Navigation */}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue