Update src/app/about/page.tsx
This commit is contained in:
@@ -26,21 +26,13 @@ export default function LandingPage() {
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
name: "Menu", id: "/menu"},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
name: "About", id: "/about"},
|
||||
{
|
||||
name: "Visit Us",
|
||||
id: "/contact",
|
||||
},
|
||||
name: "Visit Us", id: "/contact"},
|
||||
]}
|
||||
brandName="Il Vicolo"
|
||||
/>
|
||||
@@ -55,54 +47,24 @@ export default function LandingPage() {
|
||||
description="The pillars of our service."
|
||||
features={[
|
||||
{
|
||||
id: "p1",
|
||||
label: "01",
|
||||
title: "Freshness",
|
||||
items: [
|
||||
"Local produce",
|
||||
"Organic flour",
|
||||
"Hand-kneaded",
|
||||
],
|
||||
id: "p1", label: "01", title: "Freshness", items: [
|
||||
"Local produce", "Organic flour", "Hand-kneaded"],
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
label: "02",
|
||||
title: "Heritage",
|
||||
items: [
|
||||
"Traditional recipes",
|
||||
"Roman techniques",
|
||||
"Authentic",
|
||||
],
|
||||
id: "p2", label: "02", title: "Heritage", items: [
|
||||
"Traditional recipes", "Roman techniques", "Authentic"],
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
label: "03",
|
||||
title: "Service",
|
||||
items: [
|
||||
"Personal attention",
|
||||
"Warm atmosphere",
|
||||
"Inclusive",
|
||||
],
|
||||
id: "p3", label: "03", title: "Service", items: [
|
||||
"Personal attention", "Warm atmosphere", "Inclusive"],
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
label: "04",
|
||||
title: "Setting",
|
||||
items: [
|
||||
"Cozy interior",
|
||||
"Dim lighting",
|
||||
"Intimate",
|
||||
],
|
||||
id: "p4", label: "04", title: "Setting", items: [
|
||||
"Cozy interior", "Dim lighting", "Intimate"],
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
label: "05",
|
||||
title: "Craft",
|
||||
items: [
|
||||
"Time-tested",
|
||||
"Patient prep",
|
||||
"Handmade",
|
||||
],
|
||||
id: "p5", label: "05", title: "Craft", items: [
|
||||
"Time-tested", "Patient prep", "Handmade"],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -114,22 +76,9 @@ export default function LandingPage() {
|
||||
title="Company Standards"
|
||||
sections={[
|
||||
{
|
||||
heading: "Safety",
|
||||
content: {
|
||||
type: "paragraph",
|
||||
text: "We adhere to strict food safety standards.",
|
||||
},
|
||||
},
|
||||
heading: "Safety", content: "We adhere to strict food safety standards."},
|
||||
{
|
||||
heading: "Privacy",
|
||||
content: {
|
||||
type: "list",
|
||||
items: [
|
||||
"User data safety",
|
||||
"No third-party sharing",
|
||||
],
|
||||
},
|
||||
},
|
||||
heading: "Privacy", content: "User data safety and no third-party sharing."},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -139,25 +88,17 @@ export default function LandingPage() {
|
||||
logoText="Il Vicolo"
|
||||
columns={[
|
||||
{
|
||||
title: "Navigation",
|
||||
items: [
|
||||
title: "Navigation", items: [
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
label: "Menu", href: "/menu"},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
label: "About", href: "/about"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
title: "Contact", items: [
|
||||
{
|
||||
label: "Visit Us",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Visit Us", href: "/contact"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user