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,29 @@
import { sectionLinks } from "@/app/lib/linkList/sectionLinks";
import Link from "next/link";
import armoryLinks from "@/app/lib/linkList/sectionLinks";
let linksArray = [
sectionLinks.UPPERS,
sectionLinks.LOWERS,
sectionLinks.BARRELS,
sectionLinks.OPTICS,
sectionLinks.ACCESSORIES,
];
export const Armory = (props) => {
return (
<div>
{armoryLinks.length}
<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 Armory;