feat: restore prompts page to public site
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
import Link from 'next/link';
|
||||
import { usePathname } from 'next/navigation';
|
||||
import { useTranslations } from 'next-intl';
|
||||
import { Code2, BookOpen, Mail, Sparkles } from 'lucide-react';
|
||||
import { Code2, BookOpen, Mail, Sparkles, Terminal } from 'lucide-react';
|
||||
|
||||
export function Navbar({ locale }: { locale: string }) {
|
||||
const t = useTranslations('nav');
|
||||
@@ -13,6 +13,7 @@ export function Navbar({ locale }: { locale: string }) {
|
||||
{ href: `/${locale}`, label: t('home'), icon: Sparkles },
|
||||
{ href: `/${locale}/lessons`, label: t('lessons'), icon: Code2 },
|
||||
{ href: `/${locale}/cheatsheets`, label: t('cheatsheets'), icon: BookOpen },
|
||||
{ href: `/${locale}/prompts`, label: 'Prompts', icon: Terminal },
|
||||
{ href: `/${locale}/contact`, label: t('contact'), icon: Mail },
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user