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,27 @@
import { infoLinks } from "@/app/lib/linkList/infoLinks";
import Link from "next/link";
let linksArray = [
infoLinks.ABOUT,
infoLinks.FAQ,
infoLinks.DISCLOSURE,
infoLinks.PRIVACYPOLICY,
infoLinks.PIP,
infoLinks.TOS
];
export const Information = (props) => {
return (
(<div>
<h4>{props.titleText}</h4>
<ul>
{linksArray.map((link, index) => (
<li key={index}>
<Link href={link.URL}>
{link.TEXT}
</Link>
</li>
))}
</ul>
</div>)
);
}
export default Information;

View File

@@ -0,0 +1,23 @@
{
"name": "information",
"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 @@
@import '../../scss/variables.scss';