Update src/app/about/page.tsx

This commit is contained in:
2026-03-03 15:30:24 +00:00
parent 1ec34ee8df
commit 0bf1306d99

View File

@@ -93,8 +93,7 @@ export default function AboutPage() {
copyrightText="© 2025 LichtPrint. All rights reserved." copyrightText="© 2025 LichtPrint. All rights reserved."
columns={[ columns={[
{ {
title: "Services", title: "Services", items: [
items: [
{ label: "Digital Printing", href: "/services" }, { label: "Digital Printing", href: "/services" },
{ label: "Offset Printing", href: "/services" }, { label: "Offset Printing", href: "/services" },
{ label: "Packaging", href: "/services" }, { label: "Packaging", href: "/services" },
@@ -102,8 +101,7 @@ export default function AboutPage() {
], ],
}, },
{ {
title: "Company", title: "Company", items: [
items: [
{ label: "About Us", href: "/about" }, { label: "About Us", href: "/about" },
{ label: "Our Team", href: "/about" }, { label: "Our Team", href: "/about" },
{ label: "Careers", href: "#" }, { label: "Careers", href: "#" },
@@ -111,8 +109,7 @@ export default function AboutPage() {
], ],
}, },
{ {
title: "Support", title: "Support", items: [
items: [
{ label: "Contact Us", href: "/contact" }, { label: "Contact Us", href: "/contact" },
{ label: "FAQ", href: "#faq" }, { label: "FAQ", href: "#faq" },
{ label: "Pricing", href: "#pricing" }, { label: "Pricing", href: "#pricing" },
@@ -124,4 +121,4 @@ export default function AboutPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }