Update src/app/shop/[id]/page.tsx
This commit is contained in:
@@ -84,12 +84,12 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
<div id="navbar" data-section="navbar">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{"name":"Home","id":"/"},
|
||||
{"name":"Rooms","id":"product"},
|
||||
{"name":"About","id":"about"},
|
||||
{"name":"Reviews","id":"testimonial"},
|
||||
{"name":"Contact","id":"contact"},
|
||||
{"name":"Shop","id":"/shop"}
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Rooms", id: "product" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Reviews", id: "testimonial" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
]}
|
||||
brandName="Luxury Hotel"
|
||||
bottomLeftText="Premium Accommodations"
|
||||
@@ -104,11 +104,39 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
<FooterLogoEmphasis
|
||||
logoText="Luxury Hotel"
|
||||
columns={[
|
||||
{"items":[{"label":"Home","href":"/"},{"label":"Rooms","href":"#product"},{"label":"About","href":"#about"},{"label":"Reviews","href":"#testimonial"}]},
|
||||
{"items":[{"label":"Amenities","href":"#features"},{"label":"Special Offers","href":"#pricing"},{"label":"FAQ","href":"#faq"},{"label":"Contact","href":"#contact"}]},
|
||||
{"items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms & Conditions","href":"#"},{"label":"Booking Terms","href":"#"},{"label":"Accessibility","href":"#"}]},
|
||||
{"items":[{"label":"Facebook","href":"https://facebook.com"},{"label":"Instagram","href":"https://instagram.com"},{"label":"Twitter","href":"https://twitter.com"},{"label":"LinkedIn","href":"https://linkedin.com"}]}
|
||||
]
|
||||
{
|
||||
items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Rooms", href: "#product" },
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Reviews", href: "#testimonial" }
|
||||
]
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Amenities", href: "#features" },
|
||||
{ label: "Special Offers", href: "#pricing" },
|
||||
{ label: "FAQ", href: "#faq" },
|
||||
{ label: "Contact", href: "#contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms & Conditions", href: "#" },
|
||||
{ label: "Booking Terms", href: "#" },
|
||||
{ label: "Accessibility", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Facebook", href: "https://facebook.com" },
|
||||
{ label: "Instagram", href: "https://instagram.com" },
|
||||
{ label: "Twitter", href: "https://twitter.com" },
|
||||
{ label: "LinkedIn", href: "https://linkedin.com" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
ariaLabel="Site footer"
|
||||
/>
|
||||
</div>
|
||||
@@ -135,12 +163,12 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
<div id="navbar" data-section="navbar">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{"name":"Home","id":"/"},
|
||||
{"name":"Rooms","id":"product"},
|
||||
{"name":"About","id":"about"},
|
||||
{"name":"Reviews","id":"testimonial"},
|
||||
{"name":"Contact","id":"contact"},
|
||||
{"name":"Shop","id":"/shop"}
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Rooms", id: "product" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Reviews", id: "testimonial" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
]}
|
||||
brandName="Luxury Hotel"
|
||||
bottomLeftText="Premium Accommodations"
|
||||
@@ -163,11 +191,39 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
<FooterLogoEmphasis
|
||||
logoText="Luxury Hotel"
|
||||
columns={[
|
||||
{"items":[{"label":"Home","href":"/"},{"label":"Rooms","href":"#product"},{"label":"About","href":"#about"},{"label":"Reviews","href":"#testimonial"}]},
|
||||
{"items":[{"label":"Amenities","href":"#features"},{"label":"Special Offers","href":"#pricing"},{"label":"FAQ","href":"#faq"},{"label":"Contact","href":"#contact"}]},
|
||||
{"items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms & Conditions","href":"#"},{"label":"Booking Terms","href":"#"},{"label":"Accessibility","href":"#"}]},
|
||||
{"items":[{"label":"Facebook","href":"https://facebook.com"},{"label":"Instagram","href":"https://instagram.com"},{"label":"Twitter","href":"https://twitter.com"},{"label":"LinkedIn","href":"https://linkedin.com"}]}
|
||||
]
|
||||
{
|
||||
items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Rooms", href: "#product" },
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Reviews", href: "#testimonial" }
|
||||
]
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Amenities", href: "#features" },
|
||||
{ label: "Special Offers", href: "#pricing" },
|
||||
{ label: "FAQ", href: "#faq" },
|
||||
{ label: "Contact", href: "#contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms & Conditions", href: "#" },
|
||||
{ label: "Booking Terms", href: "#" },
|
||||
{ label: "Accessibility", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Facebook", href: "https://facebook.com" },
|
||||
{ label: "Instagram", href: "https://instagram.com" },
|
||||
{ label: "Twitter", href: "https://twitter.com" },
|
||||
{ label: "LinkedIn", href: "https://linkedin.com" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
ariaLabel="Site footer"
|
||||
/>
|
||||
</div>
|
||||
@@ -193,12 +249,12 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
<div id="navbar" data-section="navbar">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{"name":"Home","id":"/"},
|
||||
{"name":"Rooms","id":"product"},
|
||||
{"name":"About","id":"about"},
|
||||
{"name":"Reviews","id":"testimonial"},
|
||||
{"name":"Contact","id":"contact"},
|
||||
{"name":"Shop","id":"/shop"}
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Rooms", id: "product" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Reviews", id: "testimonial" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
]}
|
||||
brandName="Luxury Hotel"
|
||||
bottomLeftText="Premium Accommodations"
|
||||
@@ -246,11 +302,39 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
<FooterLogoEmphasis
|
||||
logoText="Luxury Hotel"
|
||||
columns={[
|
||||
{"items":[{"label":"Home","href":"/"},{"label":"Rooms","href":"#product"},{"label":"About","href":"#about"},{"label":"Reviews","href":"#testimonial"}]},
|
||||
{"items":[{"label":"Amenities","href":"#features"},{"label":"Special Offers","href":"#pricing"},{"label":"FAQ","href":"#faq"},{"label":"Contact","href":"#contact"}]},
|
||||
{"items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms & Conditions","href":"#"},{"label":"Booking Terms","href":"#"},{"label":"Accessibility","href":"#"}]},
|
||||
{"items":[{"label":"Facebook","href":"https://facebook.com"},{"label":"Instagram","href":"https://instagram.com"},{"label":"Twitter","href":"https://twitter.com"},{"label":"LinkedIn","href":"https://linkedin.com"}]}
|
||||
]
|
||||
{
|
||||
items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Rooms", href: "#product" },
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Reviews", href: "#testimonial" }
|
||||
]
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Amenities", href: "#features" },
|
||||
{ label: "Special Offers", href: "#pricing" },
|
||||
{ label: "FAQ", href: "#faq" },
|
||||
{ label: "Contact", href: "#contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms & Conditions", href: "#" },
|
||||
{ label: "Booking Terms", href: "#" },
|
||||
{ label: "Accessibility", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Facebook", href: "https://facebook.com" },
|
||||
{ label: "Instagram", href: "https://instagram.com" },
|
||||
{ label: "Twitter", href: "https://twitter.com" },
|
||||
{ label: "LinkedIn", href: "https://linkedin.com" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
ariaLabel="Site footer"
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user