Files
blackheart-website/src/lib/constants.ts
diana.dolgolyova b9800c1cc2 feat: add news section with admin editor and public display
- NewsItem type with title, text, date, optional image and link
- Admin page at /admin/news with image upload and auto-date
- Public section between Pricing and FAQ, hidden when empty
- Nav link auto-hides when no news items exist

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-15 23:19:03 +03:00

21 lines
735 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import type { NavLink } from "@/types";
export const BRAND = {
name: "BLACK HEART DANCE HOUSE",
shortName: "Blackheart",
instagram: "https://instagram.com/blackheartdancehouse",
instagramHandle: "@blackheartdancehouse",
} as const;
export const NAV_LINKS: NavLink[] = [
{ label: "О нас", href: "#about" },
{ label: "Команда", href: "#team" },
{ label: "Направления", href: "#classes" },
{ label: "Мастер-классы", href: "#master-classes" },
{ label: "Расписание", href: "#schedule" },
{ label: "Стоимость", href: "#pricing" },
{ label: "FAQ", href: "#faq" },
{ label: "Новости", href: "#news" },
{ label: "Контакты", href: "#contact" },
];