Update src/app/about/page.tsx

This commit is contained in:
2026-03-21 22:33:53 +00:00
parent 593a8f6a88
commit 7af8a58e3b

View File

@@ -10,11 +10,11 @@ import { Sparkles, MapPin } from "lucide-react";
import Link from "next/link";
const navItems = [
{ name: "Home", id: "home" },
{ name: "Menu", id: "menu" },
{ name: "Order Online", id: "order-online" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
{ name: "Order Online", id: "https://get-fruity-cafe-conyers.food-menu.net/menu/" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
];
const footerColumns = [
@@ -144,4 +144,4 @@ export default function AboutPage() {
</div>
</ThemeProvider>
);
}
}