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,28 @@
import { sectionLinks } from "@/app/lib/linkList/sectionLinks";
import Link from "next/link";
let linksArray = [
sectionLinks.BLOG,
sectionLinks.PRICEDROPS,
sectionLinks.BUILDS,
sectionLinks.BUILDGUIDES,
];
export const GroundZero = (props) => {
return (
<div>
<h4>{props.titleText}</h4>
<ul>
{linksArray.map((link, index) => (
<li key={index}>
<Link href={link.URL}>
<a>{link.TEXT}</a>
</Link>
</li>
))}
</ul>
</div>
)
}
export default GroundZero;

View File

@@ -0,0 +1,23 @@
{
"name": "groundzero",
"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';