everything moved to src

This commit is contained in:
2024-11-20 16:09:31 -05:00
parent b29d1b5722
commit 5e22ba8148
88 changed files with 24 additions and 23 deletions

View File

@@ -8,7 +8,7 @@ import TypoGraphy from '@mui/material/Typography'
import Link from 'next/link' import Link from 'next/link'
import { withStyles } from '@mui/material/styles'; import { withStyles } from '@mui/material/styles';
import styled from '@emotion/styled' import styled from '@emotion/styled'
import FooterLink from '@/app/Fragments/FooterLink'; import FooterLink from '@/src/app/Fragments/FooterLink';
class FooterLinks extends React.Component { class FooterLinks extends React.Component {

View File

@@ -1,14 +1,14 @@
import React, { Component } from "react"; import React, { Component } from "react";
import PropTypes from "prop-types"; import PropTypes from "prop-types";
import styles from './styles.module.scss'; import styles from './styles.module.scss';
import Copyright from "@/app/components/GB_Info/Copyright"; import Copyright from "@/src/app/components/GB_Info/Copyright";
import FooterLinks from "./FooterLinks"; import FooterLinks from "./FooterLinks";
import Link from "next/link"; import Link from "next/link";
import { infoLinks } from "@/app/lib/linkList/infoLinks"; import { infoLinks } from "@/src/app/lib/linkList/infoLinks";
import { sectionLinks } from "@/app/lib/linkList/sectionLinks"; import { sectionLinks } from "@/src//app/lib/linkList/sectionLinks";
import Armory from '@/app/Fragments/Armory'; import Armory from '@/src/app/Fragments/Armory';
import GroundZero from "@/app/Fragments/GroundZero"; import GroundZero from "@/src/app/Fragments/GroundZero";
import Information from "@/app/Fragments/Information"; import Information from "@/src/app/Fragments/Information";
export const Footer = () => { export const Footer = () => {
return ( return (

View File

@@ -2,7 +2,7 @@ import React, { Component } from 'react'
import TypoGraphy from '@mui/material/Typography'; import TypoGraphy from '@mui/material/Typography';
import PropTypes from 'prop-types' //ES6 import PropTypes from 'prop-types' //ES6
import styles from './styles.module.css'; import styles from './styles.module.css';
import constants from '@/app/lib/constants' import constants from '@/src/app/lib/constants'
import { useQuery, useMutation, gql } from "@apollo/client"; import { useQuery, useMutation, gql } from "@apollo/client";

View File

@@ -1,5 +1,5 @@
import React, { Component } from 'react'; import React, { Component } from 'react';
import { COMPANY_NAME, COMPANY_URL } from '@/app/lib/constants'; import { COMPANY_NAME, COMPANY_URL } from '@/src/app/lib/constants';
import Typography from '@mui/material/Typography'; import Typography from '@mui/material/Typography';
import MuiLink from '@mui/material/Link'; import MuiLink from '@mui/material/Link';
import styles from './styles.module.css' import styles from './styles.module.css'

View File

@@ -2,8 +2,8 @@ import React, { Component } from 'react'
import TypoGraphy from '@mui/material/Typography'; import TypoGraphy from '@mui/material/Typography';
import PropTypes from 'prop-types' //ES6 import PropTypes from 'prop-types' //ES6
import styles from './styles.module.css'; import styles from './styles.module.css';
import constants from '@/app/lib/constants' import constants from '@/src/app/lib/constants'
import {SITE_CONT_TYPE} from '@/app/lib/constants' import {SITE_CONT_TYPE} from '@/src/app/lib/constants'
import { useQuery, useMutation, gql } from "@apollo/client"; import { useQuery, useMutation, gql } from "@apollo/client";
export default function Disclosure(props) { export default function Disclosure(props) {

View File

@@ -3,7 +3,7 @@ import Head from 'next/head';
import TypoGraphy from '@mui/material/Typography'; import TypoGraphy from '@mui/material/Typography';
import PropTypes from 'prop-types' //ES6 import PropTypes from 'prop-types' //ES6
import styles from './styles.module.css'; import styles from './styles.module.css';
import constants from '@/app/lib/constants' import constants from '@/src/app/lib/constants'
import { useQuery, useMutation, gql } from "@apollo/client"; import { useQuery, useMutation, gql } from "@apollo/client";
export default function PIP(props) { export default function PIP(props) {

View File

@@ -3,7 +3,7 @@ import TypoGraphy from '@mui/material/Typography';
import Head from 'next/head'; import Head from 'next/head';
import PropTypes from 'prop-types' //ES6 import PropTypes from 'prop-types' //ES6
import styles from './styles.module.css'; import styles from './styles.module.css';
import constants from '@/app/lib/constants' import constants from '@/src/app/lib/constants'
import { useQuery, useMutation, gql } from "@apollo/client"; import { useQuery, useMutation, gql } from "@apollo/client";
export default function PrivacyPolicy(props) { export default function PrivacyPolicy(props) {

View File

@@ -2,7 +2,7 @@ import React, { Component } from 'react'
import Head from 'next/head'; import Head from 'next/head';
import TypoGraphy from '@mui/material/Typography'; import TypoGraphy from '@mui/material/Typography';
import PropTypes from 'prop-types' //ES6 import PropTypes from 'prop-types' //ES6
import constants from '@/app/lib/constants' import constants from '@/src/app/lib/constants'
import { useQuery, useMutation, gql } from "@apollo/client"; import { useQuery, useMutation, gql } from "@apollo/client";
export default function TermsOfService(props) { export default function TermsOfService(props) {

View File

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 25 KiB

View File

@@ -2,9 +2,9 @@ import type { Config } from "tailwindcss";
export default { export default {
content: [ content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}", "./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}", "./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}", "./src/app/**/*.{js,ts,jsx,tsx,mdx}",
], ],
theme: { theme: {
extend: { extend: {

View File

@@ -13,6 +13,7 @@
"isolatedModules": true, "isolatedModules": true,
"jsx": "preserve", "jsx": "preserve",
"incremental": true, "incremental": true,
"baseUrl": ".",
"plugins": [ "plugins": [
{ {
"name": "next" "name": "next"
@@ -21,25 +22,25 @@
"paths": { "paths": {
"@/*": ["./*"], "@/*": ["./*"],
"@/components/*": [ "@/components/*": [
"./app/components/*" "/src/app/components/*"
], ],
"@/layouts/*": [ "@/layouts/*": [
"./app/components/layouts/*" "src/app/components/layouts/*"
], ],
"@/fragments/*": [ "@/fragments/*": [
"./app/Fragments/*" "src/app/Fragments/*"
], ],
"@/lib/*": [ "@/lib/*": [
"./app/lib/*" "src/app/lib/*"
], ],
"@/scss/*": [ "@/scss/*": [
"./scss/*" "./scss/*"
], ],
"@/admin/*": [ "@/admin/*": [
"./app/components/Admin/*" "src/app/components/Admin/*"
], ],
"@/products/*": [ "@/products/*": [
"./app/components/Products/*" "src/app/components/Products/*"
] ]
}, },