Update src/app/about/page.tsx

This commit is contained in:
2026-06-03 19:02:00 +00:00
parent 7eba5b2bbc
commit b1d9b39e40

View File

@@ -10,14 +10,14 @@ import type { Metadata } from 'next';
export const metadata: Metadata = { export const metadata: Metadata = {
title: 'About Hala Diamonds', title: 'About Hala Diamonds',
description: 'Learn about Hala Diamonds' commitment to craftsmanship, quality, and customer satisfaction.', description: "Learn about Hala Diamonds' commitment to craftsmanship, quality, and customer satisfaction."
}; };
export default function AboutUs() { export default function AboutUs() {
const navItems = [ const navItems = [
{ name: 'Home', id: '/' }, { name: 'Home', id: '/' },
{ name: 'About Us', id: '/about' }, { name: 'About Us', id: '/about' },
{ name: 'Contact Us', id: '/contact' }, { name: 'Contact Us', id: '/contact' }
]; ];
return ( return (
@@ -42,7 +42,7 @@ export default function AboutUs() {
metrics={[ metrics={[
{ icon: Diamond, label: 'Years in Business', value: '50+' }, { icon: Diamond, label: 'Years in Business', value: '50+' },
{ icon: Gem, label: 'Certified Gemologists', value: '15+' }, { icon: Gem, label: 'Certified Gemologists', value: '15+' },
{ icon: HeartHandshake, label: 'Satisfied Customers', value: '10K+' }, { icon: HeartHandshake, label: 'Satisfied Customers', value: '10K+' }
]} ]}
metricsAnimation="slide-up" metricsAnimation="slide-up"
useInvertedBackground={false} useInvertedBackground={false}
@@ -57,7 +57,7 @@ export default function AboutUs() {
logoText="Hala Diamonds" logoText="Hala Diamonds"
columns={[ columns={[
{ items: [{ label: 'Home', href: '/' }, { label: 'About Us', href: '/about' }] }, { items: [{ label: 'Home', href: '/' }, { label: 'About Us', href: '/about' }] },
{ items: [{ label: 'Contact Us', href: '/contact' }] }, { items: [{ label: 'Contact Us', href: '/contact' }] }
]} ]}
/> />
</ThemeProvider> </ThemeProvider>