Skip to content

Commit

Permalink
Added "Terms and Conditions" Page
Browse files Browse the repository at this point in the history
  • Loading branch information
MastanSayyad committed May 19, 2024
1 parent c5be882 commit a3a1eea
Show file tree
Hide file tree
Showing 4 changed files with 396 additions and 3 deletions.
181 changes: 180 additions & 1 deletion client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
"react-dom": "18.0.0",
"react-scroll": "^1.8.7",
"react-slick": "^0.29.0",
"slick-carousel": "^1.8.1"
"slick-carousel": "^1.8.1",
"styled-components": "^6.1.11"
},
"devDependencies": {
"@types/node": "17.0.25",
Expand Down
3 changes: 2 additions & 1 deletion client/src/components/footer/footer-navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const pageMenu: Array<Navigation> = [
const companyMenu: Array<Navigation> = [
{ label: 'Contact Us', path: '#' },
{ label: 'Privacy & Policy', path: '#' },
{ label: 'Term & Condition', path: '#' },
{ label: 'Term & Conditions', path: 'terms-and-conditions' },
{ label: 'FAQ', path: '#' },
]

Expand All @@ -35,6 +35,7 @@ interface NavigationItemProps {

const NavigationItem: FC<NavigationItemProps> = ({ label, path }) => {
return (

<Link href={path} passHref>
<MuiLink
underline="hover"
Expand Down
Loading

0 comments on commit a3a1eea

Please sign in to comment.