Update src/app/blog/page.tsx
This commit is contained in:
@@ -54,7 +54,8 @@ export default function BlogPage() {
|
||||
const url = `${apiUrl}/posts/${projectId}?status=published`;
|
||||
const response = await fetch(url, {
|
||||
method: "GET", headers: {
|
||||
"Content-Type": "application/json"},
|
||||
"Content-Type": "application/json"
|
||||
},
|
||||
});
|
||||
|
||||
if (response.ok) {
|
||||
@@ -99,14 +100,13 @@ export default function BlogPage() {
|
||||
<NavbarStyleCentered
|
||||
brandName="NY Ouzzeur"
|
||||
navItems={[
|
||||
{"name":"Home","id":"/home"},
|
||||
{"name":"Home","id":"hero"},
|
||||
{"name":"About","id":"about"},
|
||||
{"name":"Menu","id":"features"},
|
||||
{"name":"Reviews","id":"testimonials"},
|
||||
{"name":"Reservations","id":"contact"}
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Menu", id: "features" },
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
{ name: "Reservations", id: "contact" }
|
||||
]}
|
||||
button={{"text":"Book Table","href":"contact"}}
|
||||
button={{ text: "Book Table", href: "contact" }}
|
||||
/>
|
||||
|
||||
{isLoading ? (
|
||||
@@ -128,10 +128,37 @@ export default function BlogPage() {
|
||||
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{"title":"Navigate","items":[{"label":"Home","id":"hero"},{"label":"About","id":"about"},{"label":"Menu","id":"features"},{"label":"Reviews","id":"testimonials"}]},
|
||||
{"title":"Dining","items":[{"label":"Make a Reservation","id":"contact"},{"label":"Private Events","href":"#pricing"},{"label":"Gift Cards","href":"#"},{"label":"Contact Us","id":"contact"}]},
|
||||
{"title":"Information","items":[{"label":"Hours","href":"#"},{"label":"Location","href":"#"},{"label":"Careers","href":"#"},{"label":"Press","href":"#"}]},
|
||||
{"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"},{"label":"Accessibility","href":"#"}]}
|
||||
{
|
||||
title: "Navigate", items: [
|
||||
{ label: "Home", href: "#hero" },
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Menu", href: "#features" },
|
||||
{ label: "Reviews", href: "#testimonials" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Dining", items: [
|
||||
{ label: "Make a Reservation", href: "#contact" },
|
||||
{ label: "Private Events", href: "#pricing" },
|
||||
{ label: "Gift Cards", href: "#" },
|
||||
{ label: "Contact Us", href: "#contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Information", items: [
|
||||
{ label: "Hours", href: "#" },
|
||||
{ label: "Location", href: "#" },
|
||||
{ label: "Careers", href: "#" },
|
||||
{ label: "Press", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Accessibility", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
bottomLeftText="© 2025 NY Ouzzeur. All rights reserved. Crafted with excellence."
|
||||
bottomRightText="Fine Dining in the Heart of New York"
|
||||
|
||||
Reference in New Issue
Block a user