Skip to content

Commit

Permalink
Footer: Fix hyperlinks
Browse files Browse the repository at this point in the history
  • Loading branch information
MZO9400 committed Aug 29, 2022
1 parent f0b7771 commit 8a2a85e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions src/components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,24 +16,24 @@
*/
const navigation = {
services: [
{ name: 'Mobile Application', href: '#' },
{ name: 'GAPP Finder', href: '#' },
{ name: 'Shipping Methods', href: '#' },
{ name: 'Payment Gateways', href: '#' },
{ name: 'Store Front', href: 'storefront' },
{ name: 'GAPP Finder', href: 'finder' },
{ name: 'Shipping Methods', href: 'shipping' },
{ name: 'Payment Gateways', href: 'payment' },
],
support: [
{ name: 'Pricing', href: '#' },
{ name: 'Pricing', href: 'pricing' },
{ name: 'FAQs', href: '#' },
{ name: 'Contact Us', href: '#' },
{ name: 'Contact Us', href: 'contact' },
],
company: [
{ name: 'About', href: '#' },
{ name: 'About', href: 'about' },
{ name: 'Blog', href: '#' },
{ name: 'Partners', href: '#' },
],
legal: [
{ name: 'Privacy Policy', href: '#' },
{ name: 'Terms & Conditions', href: '#' },
{ name: 'Privacy Policy', href: 'privacy-policy' },
{ name: 'Terms & Conditions', href: 'terms-conditions' },
],
social: [
{
Expand Down
2 changes: 1 addition & 1 deletion src/components/Services.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function Item(props) {
}

const data = [
{label: "Store front", href: "storefront"},
{label: "Store Fsront", href: "storefront"},
{label: "Finder", href: "finder"},
{label: "Shipping", href: "shipping"},
{label: "Payment", href: "payment"},
Expand Down

0 comments on commit 8a2a85e

Please sign in to comment.