moved stuff out of app since it is used for routing

This commit is contained in:
2024-11-20 23:16:26 -05:00
parent d1bd68e720
commit fd08fd2886
136 changed files with 56 additions and 46 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>
)
}

View File

@@ -0,0 +1,23 @@
{
"name": "footerlink",
"version": "0.0.0",
"private": true,
"main": "./index",
"author": {
"name": "Sean Strawsburg",
"email": "sean@goforward.group",
"url": "https://goforward.group/"
},
"contributors": [
{
"name": "Don Strawsburg",
"email": "don@goforward.group",
"url": "https://goforward.group/"
},
{
"name": "Sean Strawsburg",
"email": "sean@goforward.group",
"url": "https://goforward.group/"
}
]
}

View File

@@ -0,0 +1,5 @@
.navLinks:hover {
font-weight: bold;
text-decoration : none;
}