Skip to content

Commit

Permalink
footer links moved to CONFIG
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin3656 authored and varortz committed May 15, 2024
1 parent c13a1f8 commit 6ebec06
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
16 changes: 8 additions & 8 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"dependencies": {
"@calblueprint/prettier-config": "^0.0.1",
"@hookform/resolvers": "^3.3.4",
"@hookform/resolvers": "^3.4.0",
"@radix-ui/react-slot": "^1.0.2",
"@supabase/supabase-js": "^2.36.0",
"@types/node": "20.6.3",
Expand All @@ -33,7 +33,7 @@
"react-select-async-paginate": "^0.7.3",
"styled-components": "^6.0.8",
"validator": "^13.11.0",
"zod": "^3.22.4"
"zod": "^3.23.8"
},
"devDependencies": {
"@calblueprint/eslint-config-react": "^0.0.3",
Expand Down
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
import { useMemo } from 'react';
import Image from 'next/image';
import { LinkButton } from '@/components/Buttons';
import Footer from '@/components/Footer';
import CONFIG from '@/lib/configs';
import COLORS from '@/styles/colors';
import Footer from '@/components/Footer';
import { H2, H3, H4 } from '@/styles/text';
import { useAuth } from '@/utils/AuthProvider';
import { useProfile } from '@/utils/ProfileProvider';
Expand Down
6 changes: 3 additions & 3 deletions src/components/Footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

import Image from 'next/image';
import Link from 'next/link';
import { P } from '@/styles/text';
import CONFIG from '@/lib/configs';
import { IconType } from '@/lib/icons';
import { Flex } from '@/styles/containers';
import CONFIG from '@/lib/configs';
import { P } from '@/styles/text';
import FooterImage from '../../../public/images/footer-image.webp';
import * as Styles from './styles';
import Icon from '../Icon';
import * as Styles from './styles';

type SocialLink = {
href: string;
Expand Down
2 changes: 1 addition & 1 deletion src/components/Footer/styles.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import styled from 'styled-components';
import COLORS from '@/styles/colors';
import { LinkColored } from '@/styles/text';
import { sans } from '@/styles/fonts';
import { LinkColored } from '@/styles/text';

export const FooterContainer = styled.div`
width: 100%;
Expand Down

0 comments on commit 6ebec06

Please sign in to comment.