Page rename

This commit is contained in:
alma 2025-04-21 10:04:55 +02:00
parent 80e3628f90
commit fe89394879
2 changed files with 3 additions and 1 deletions

View File

@ -12,6 +12,7 @@ import { ContactsView } from '@/components/carnet/contacts-view';
import { X, Menu } from "lucide-react";
import { ContactDetails } from '@/components/carnet/contact-details';
import { parse as parseVCard, format as formatVCard } from 'vcard-parser';
import Header from "@/components/carnet/header";
// Layout modes
export enum PaneLayout {
@ -573,6 +574,7 @@ export default function CarnetPage() {
<main className="w-full h-screen bg-black">
<div className="w-full h-full px-4 pt-12 pb-4">
<div className="flex h-full bg-carnet-bg">
<Header title="PAGES" />
{/* Navigation Panel */}
{showNav && (
<>

View File

@ -116,7 +116,7 @@ export function Sidebar({ isOpen, onClose }: SidebarProps) {
// Base menu items (available for everyone)
const baseMenuItems: MenuItem[] = [
{
title: "Carnet",
title: "Pages",
icon: BookOpen,
href: "/carnet",
iframe: process.env.NEXT_PUBLIC_IFRAME_CARNET_URL,