diff --git a/components/Footer/FooterLink.tsx b/components/Footer/FooterLink.tsx deleted file mode 100644 index fad44887..00000000 --- a/components/Footer/FooterLink.tsx +++ /dev/null @@ -1,58 +0,0 @@ -import clsx from 'clsx' -import styles from './style.module.scss' - -type LinkItem = { - label: string - link: string -} -type ColumnLink = LinkItem[] -const footerLinks: ColumnLink[] = [ - [ - { label: 'About us', link: '/about' }, - { label: 'Explorer', link: '/explorer' }, - { label: 'Bridge', link: '/bridge' }, - { label: 'Dex exchange', link: '/dex' } - ], - [ - { label: 'Documents', link: '/about' }, - { label: 'Exampies', link: '/explorer' }, - { label: 'Whitepaper', link: '/bridge' } - ], - [ - { label: 'Privacy and Policy', link: '/about' }, - { label: 'Term and Services', link: '/explorer' }, - { label: 'FAQs', link: '/bridge' }, - { label: 'Live Support', link: '/dex' } - ] -] - -type FooterLinkProps = { - classes?: string -} - -export default function FooterLink({ classes }: FooterLinkProps) { - return ( -
- {footerLinks.map((rows, index) => ( -
- {rows.map((row, index) => ( - - - {row.label} - - - ))} -
- ))} -
- ) -} diff --git a/components/Footer/FooterSocial.tsx b/components/Footer/FooterSocial.tsx deleted file mode 100644 index 66741b1a..00000000 --- a/components/Footer/FooterSocial.tsx +++ /dev/null @@ -1,45 +0,0 @@ -import clsx from 'clsx' -import Image from 'next/image' -import styles from './style.module.scss' - -const socialItems = [ - { - icon: '/images/socials/twitter.png', - link: '/#' - }, - { - icon: '/images/socials/facebook.png', - link: '/#' - }, - { - icon: '/images/socials/youtube.png', - link: '/#' - }, - { - icon: '/images/socials/medium.png', - link: '/#' - }, - { - icon: '/images/socials/tele.png', - link: '/#' - } -] - -type FooterSocialProps = { - classes?: string -} - -export default function FooterSocial({ classes }: FooterSocialProps) { - return ( -
-
Connect with us
-
- {socialItems.map(item => ( - - Astra explorer - - ))} -
-
- ) -} diff --git a/components/Footer/index.tsx b/components/Footer/index.tsx deleted file mode 100644 index cb61fc5f..00000000 --- a/components/Footer/index.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import clsx from 'clsx' -import Container from '../Container' -import Logo from '../Logo' -import FooterLink from './FooterLink' -import FooterSocial from './FooterSocial' - -import styles from './style.module.scss' - -export default function Footer() { - return ( - - ) -} diff --git a/components/Footer/style.module.scss b/components/Footer/style.module.scss deleted file mode 100644 index fda35028..00000000 --- a/components/Footer/style.module.scss +++ /dev/null @@ -1,29 +0,0 @@ -.footer { - background-color: rgba(var(--contrast-color-theme--raw), 0.05); -} -.footerInfo { - display: flex; - @media screen and (max-width: 1220px) { - flex-wrap: wrap; - } - .wrapperLinks { - display: flex; - - div { - display: flex; - flex-direction: column; - a { - color: var(--contrast-color-theme-50); - } - } - } -} - -.footerSocial { - @media screen and (max-width: 1220px) { - margin-top: var(--offset-xl); - } - div:last-child { - display: flex; - } -} diff --git a/public/images/socials/facebook.png b/public/images/socials/facebook.png deleted file mode 100644 index bc8050ec..00000000 Binary files a/public/images/socials/facebook.png and /dev/null differ diff --git a/public/images/socials/medium.png b/public/images/socials/medium.png deleted file mode 100644 index c39d32ff..00000000 Binary files a/public/images/socials/medium.png and /dev/null differ diff --git a/public/images/socials/tele.png b/public/images/socials/tele.png deleted file mode 100644 index 6b6758d8..00000000 Binary files a/public/images/socials/tele.png and /dev/null differ diff --git a/public/images/socials/twitter.png b/public/images/socials/twitter.png deleted file mode 100644 index 8068f451..00000000 Binary files a/public/images/socials/twitter.png and /dev/null differ diff --git a/public/images/socials/youtube.png b/public/images/socials/youtube.png deleted file mode 100644 index 41738ddc..00000000 Binary files a/public/images/socials/youtube.png and /dev/null differ