Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 76e717b459 | |||
| 0bafe95cf3 | |||
| 0dc16189bf | |||
| 6a9607be7a |
@@ -1,64 +0,0 @@
|
|||||||
"use client";
|
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
||||||
import ReactLenis from "lenis/react";
|
|
||||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
|
||||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
|
||||||
import LegalSection from '@/components/legal/LegalSection';
|
|
||||||
|
|
||||||
export default function AdminDocumentationPage() {
|
|
||||||
return (
|
|
||||||
<ThemeProvider
|
|
||||||
defaultButtonVariant="expand-hover"
|
|
||||||
defaultTextAnimation="background-highlight"
|
|
||||||
borderRadius="rounded"
|
|
||||||
contentWidth="medium"
|
|
||||||
sizing="large"
|
|
||||||
background="fluid"
|
|
||||||
cardStyle="glass-depth"
|
|
||||||
primaryButtonStyle="radial-glow"
|
|
||||||
secondaryButtonStyle="glass"
|
|
||||||
headingFontWeight="semibold"
|
|
||||||
>
|
|
||||||
<ReactLenis root>
|
|
||||||
<div id="nav" data-section="nav">
|
|
||||||
<NavbarStyleCentered
|
|
||||||
navItems={[
|
|
||||||
{ name: "דף הבית", id: "/" },
|
|
||||||
{ name: "מדריך ניהול", id: "/admin" },
|
|
||||||
]}
|
|
||||||
brandName="Familia"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<LegalSection
|
|
||||||
layout="page"
|
|
||||||
title="מדריך לניהול התוכן באתר"
|
|
||||||
subtitle="כיצד לגשת ולעדכן את האתר שלך"
|
|
||||||
sections={[
|
|
||||||
{
|
|
||||||
heading: "גישה לפורטל הניהול", content: { type: "paragraph", text: "כדי לגשת למערכת ניהול התוכן, יש להוסיף '/admin' לכתובת האתר בדפדפן (למשל: yoursite.com/admin). התחבר באמצעות שם המשתמש והסיסמה שסופקו לך בתיאום ההקמה." }
|
|
||||||
},
|
|
||||||
{
|
|
||||||
heading: "עדכון תפריטים ומוצרים", content: { type: "list", items: ["היכנס ללשונית 'מוצרים' בתפריט הצד.", "ניתן להוסיף, לערוך או למחוק מנות ותפריטים קיימים.", "יש לוודא שמירת השינויים לאחר כל עדכון."] }
|
|
||||||
},
|
|
||||||
{
|
|
||||||
heading: "ניהול גלריה וביקורות", content: { type: "paragraph", text: "ניתן להעלות תמונות חדשות לגלריה דרך לשונית 'מדיה'. לניהול הביקורות המופיעות באתר, בחר באפשרות ' testimonials' בלוח הבקרה כדי לאשר או להסיר תוכן." }
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
|
||||||
<FooterBase
|
|
||||||
columns={[
|
|
||||||
{ title: "תפריט", items: [{ label: "קפה חם", href: "/#menu" }, { label: "מאפים", href: "/#menu" }] },
|
|
||||||
{ title: "מידע", items: [{ label: "עלינו", href: "/#about" }, { label: "מדריך ניהול", href: "/admin" }] },
|
|
||||||
]}
|
|
||||||
logoText="Familia"
|
|
||||||
copyrightText="© 2025 פאמיליה. כל הזכויות שמורות."
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</ReactLenis>
|
|
||||||
</ThemeProvider>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -35,7 +35,6 @@ export default function LandingPage() {
|
|||||||
{ name: "גלריה", id: "gallery" },
|
{ name: "גלריה", id: "gallery" },
|
||||||
{ name: "ביקורות", id: "testimonials" },
|
{ name: "ביקורות", id: "testimonials" },
|
||||||
{ name: "יצירת קשר", id: "contact" },
|
{ name: "יצירת קשר", id: "contact" },
|
||||||
{ name: "מדריך ניהול", id: "/admin" },
|
|
||||||
]}
|
]}
|
||||||
brandName="Familia"
|
brandName="Familia"
|
||||||
/>
|
/>
|
||||||
@@ -140,7 +139,7 @@ export default function LandingPage() {
|
|||||||
<FooterBase
|
<FooterBase
|
||||||
columns={[
|
columns={[
|
||||||
{ title: "תפריט", items: [{ label: "קפה חם", href: "#menu" }, { label: "מאפים", href: "#menu" }, { label: "ארוחות בוקר", href: "#menu" }] },
|
{ title: "תפריט", items: [{ label: "קפה חם", href: "#menu" }, { label: "מאפים", href: "#menu" }, { label: "ארוחות בוקר", href: "#menu" }] },
|
||||||
{ title: "מידע", items: [{ label: "מיקום", href: "#about" }, { label: "שעות פתיחה", href: "#" }, { label: "יצירת קשר", href: "#contact" }, { label: "מדריך ניהול", href: "/admin" }] },
|
{ title: "מידע", items: [{ label: "מיקום", href: "#about" }, { label: "שעות פתיחה", href: "#" }, { label: "יצירת קשר", href: "#contact" }] },
|
||||||
]}
|
]}
|
||||||
logoText="Familia"
|
logoText="Familia"
|
||||||
copyrightText="© 2025 פאמיליה. כל הזכויות שמורות."
|
copyrightText="© 2025 פאמיליה. כל הזכויות שמורות."
|
||||||
|
|||||||
Reference in New Issue
Block a user