import React from 'react'; import { FooterWave } from '../FooterWave'; import RavensLogo from '../../../assets/ravens-logo.svg'; import { FooterStandardLinks as linkData } from './FooterStandardData'; import { Link } from '../../Link/Link'; const Social = [ { name: 'Facebook', href: 'https://carleton.ca', icon: (props: any) => ( ), }, { name: 'Instagram', href: 'https://carleton.ca', icon: (props: any) => ( ), }, { name: 'Twitter', href: 'https://carleton.ca', icon: (props: any) => ( ), }, { name: 'YouTube', href: 'https://carleton.ca', icon: (props: any) => ( ), }, { name: 'LinkedIn', href: 'https://carleton.ca', icon: (props: any) => ( ), }, ]; export const FooterStandard = () => { return ( ); };