restructuring folders

This commit is contained in:
2024-11-15 15:58:34 -05:00
parent cca47965a6
commit 53d4e1211d
72 changed files with 1661 additions and 31 deletions

View File

@@ -0,0 +1,13 @@
import { ListItemText, Link } from "@mui/material";
import styles from './styles.module.css'
import { withStyles } from '@mui/material/styles';
import styled from '@emotion/styled'
import React from "react";
export default function FooterLink(props) {
return (
<ListItemText inset >
<Link href={props.href}><a className={styles.navLinks}>{props.title}</a></Link>
</ListItemText>
)
}