mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-06 02:36:44 -05:00
restructuring folders
This commit is contained in:
13
app/Fragments/FooterLink/index.tsx
Normal file
13
app/Fragments/FooterLink/index.tsx
Normal 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>
|
||||
)
|
||||
}
|
||||
23
app/Fragments/FooterLink/package.json
Normal file
23
app/Fragments/FooterLink/package.json
Normal 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/"
|
||||
}
|
||||
]
|
||||
}
|
||||
5
app/Fragments/FooterLink/styles.module.css
Normal file
5
app/Fragments/FooterLink/styles.module.css
Normal file
@@ -0,0 +1,5 @@
|
||||
|
||||
.navLinks:hover {
|
||||
font-weight: bold;
|
||||
text-decoration : none;
|
||||
}
|
||||
Reference in New Issue
Block a user