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 { withStyles } from '@mui/material/styles';
import styled from '@emotion/styled'
import FooterLink from '@/app/Fragments/FooterLink';
import FooterLink from '@/src/app/Fragments/FooterLink';
class FooterLinks extends React.Component {

View File

@@ -1,14 +1,14 @@
import React, { Component } from "react";
import PropTypes from "prop-types";
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 Link from "next/link";
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";
import { infoLinks } from "@/src/app/lib/linkList/infoLinks";
import { sectionLinks } from "@/src//app/lib/linkList/sectionLinks";
import Armory from '@/src/app/Fragments/Armory';
import GroundZero from "@/src/app/Fragments/GroundZero";
import Information from "@/src/app/Fragments/Information";
export const Footer = () => {
return (

View File

@@ -2,7 +2,7 @@ import React, { Component } from 'react'
import TypoGraphy from '@mui/material/Typography';
import PropTypes from 'prop-types' //ES6
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";

View File

@@ -1,5 +1,5 @@
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 MuiLink from '@mui/material/Link';
import styles from './styles.module.css'

View File

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

View File

@@ -3,7 +3,7 @@ import Head from 'next/head';
import TypoGraphy from '@mui/material/Typography';
import PropTypes from 'prop-types' //ES6
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";
export default function PIP(props) {

View File

@@ -3,7 +3,7 @@ import TypoGraphy from '@mui/material/Typography';
import Head from 'next/head';
import PropTypes from 'prop-types' //ES6
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";
export default function PrivacyPolicy(props) {

View File

@@ -2,7 +2,7 @@ import React, { Component } from 'react'
import Head from 'next/head';
import TypoGraphy from '@mui/material/Typography';
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";
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 {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {

View File

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