Update src/app/page.tsx

This commit is contained in:
2026-05-15 12:58:12 +00:00
parent c3abe7a3f9
commit a5d649dc1a

View File

@@ -35,6 +35,7 @@ export default function LandingPage() {
{ name: "גלריה", id: "gallery" },
{ name: "ביקורות", id: "testimonials" },
{ name: "יצירת קשר", id: "contact" },
{ name: "מדריך ניהול", id: "/admin" },
]}
brandName="Familia"
/>
@@ -139,7 +140,7 @@ export default function LandingPage() {
<FooterBase
columns={[
{ title: "תפריט", items: [{ label: "קפה חם", href: "#menu" }, { label: "מאפים", href: "#menu" }, { label: "ארוחות בוקר", href: "#menu" }] },
{ title: "מידע", items: [{ label: "מיקום", href: "#about" }, { label: "שעות פתיחה", href: "#" }, { label: "יצירת קשר", href: "#contact" }] },
{ title: "מידע", items: [{ label: "מיקום", href: "#about" }, { label: "שעות פתיחה", href: "#" }, { label: "יצירת קשר", href: "#contact" }, { label: "מדריך ניהול", href: "/admin" }] },
]}
logoText="Familia"
copyrightText="© 2025 פאמיליה. כל הזכויות שמורות."
@@ -148,4 +149,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}