Files
ballistic-builder/app/components/Footer/index.tsx

43 lines
1.3 KiB
TypeScript
Raw Normal View History

2024-11-14 17:46:13 -05:00
import React, { Component } from "react";
import PropTypes from "prop-types";
import styles from './styles.module.scss';
2024-11-15 15:58:34 -05:00
import Copyright from "@/app/components/Info/Copyright";
2024-11-14 17:46:13 -05:00
import FooterLinks from "./FooterLinks";
import Link from "next/link";
2024-11-15 15:58:34 -05:00
import { infoLinks } from "@/app/lib/linkList/infoLinks";
import { sectionLinks } from "@/app/lib/linkList/sectionLinks";
import Armory from '@/app/Fragments/Armory';
import GroundZero from "@/app/Fragments/GroundZero";
import Information from "@/app/Fragments/Information";
2024-11-14 17:46:13 -05:00
export const Footer = () => {
return (
// <div className={styles.Footer}>
// <FooterLinks></FooterLinks>
// <Copyright></Copyright>
// </div>
2024-11-20 13:44:41 -05:00
(<>
2024-11-14 17:46:13 -05:00
<footer className={styles.footer}>
<nav className={styles.linksContainer}>
<div className={styles.brand}>
<div className={styles.logo}>
<span>Logo</span>
</div>
<p>Find Parts.</p>
<p>Build Guns.</p>
<p>Freedom On.</p>
</div>
<Armory titleText="Armory"/>
<GroundZero titleText="Ground Zero"/>
<Information titleText="Information"/>
</nav>
</footer>
<Copyright></Copyright>
2024-11-20 13:44:41 -05:00
</>)
2024-11-14 17:46:13 -05:00
);
}
Footer.propTypes = {};
export default Footer;