mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-05 18:26:45 -05:00
everything moved to src
This commit is contained in:
@@ -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 {
|
||||
@@ -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 (
|
||||
@@ -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";
|
||||
|
||||
@@ -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'
|
||||
@@ -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) {
|
||||
@@ -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) {
|
||||
@@ -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) {
|
||||
@@ -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) {
|
||||
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
@@ -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: {
|
||||
|
||||
@@ -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/*"
|
||||
]
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user