Skip to content

Commit a640f58

Browse files
committed
fix: restore missing footer links (Technology, Sitemap, Privacy Policy)
1 parent dffb11f commit a640f58

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/components/layout/footer.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,9 @@ const Footer: React.FC = () => {
104104
/>
105105
<ul className="list-none">
106106
{[
107+
{ label: 'Technology', href: '/technology' },
108+
{ label: 'Sitemap', href: '/sitemap' },
109+
{ label: 'Privacy Policy', href: '/privacy-policy' },
107110
{ label: 'Contact Us', href: '/contact' },
108111
].map((link) => (
109112
<li key={link.label}>

0 commit comments

Comments
 (0)