mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-05 18:26:45 -05:00
working again, missing global.css in page.tsx
This commit is contained in:
@@ -3,7 +3,7 @@
|
|||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"private": "true",
|
"private": "true",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "next dev",
|
"dev": "next dev --turbo",
|
||||||
"build": "next build",
|
"build": "next build",
|
||||||
"start": "next start",
|
"start": "next start",
|
||||||
"lint": "next lint"
|
"lint": "next lint"
|
||||||
|
|||||||
@@ -3,9 +3,7 @@ export const metadata = {
|
|||||||
description: 'Generated by Next.js',
|
description: 'Generated by Next.js',
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({ children,}: {
|
||||||
children,
|
|
||||||
}: {
|
|
||||||
children: React.ReactNode
|
children: React.ReactNode
|
||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
|
|||||||
@@ -1,15 +1,15 @@
|
|||||||
export const APP_NAME = "The Gun Bag - Gun Builder";
|
export const APP_NAME = "Ballistic Builder";
|
||||||
export const COMPANY_NAME = "DarkShark Technologies, LLC";
|
export const COMPANY_NAME = "Forward Group, LLC";
|
||||||
export const COMPANY_URL = "https://goforward.group";
|
export const COMPANY_URL = "https://goforward.group";
|
||||||
export const AUTHOR = "DarkShark Technologies, LLC";
|
export const AUTHOR = "Forward Group, LLC";
|
||||||
export const META_KEYWORDS = "Pew Pew";
|
export const META_KEYWORDS = "Pew Pew";
|
||||||
export const META_DESCRIPTION = "Pow Pow";
|
export const META_DESCRIPTION = "Pow Pow";
|
||||||
export default {
|
export default {
|
||||||
APP_NAME: 'The Gun Bag - Gun Builder',
|
APP_NAME: 'Ballistic Builder',
|
||||||
SITE_NAME: 'Gun Builder',
|
SITE_NAME: 'Ballistic Builder',
|
||||||
COMPANY_NAME: 'DarkShark Technologies, LLC',
|
COMPANY_NAME: 'Forward Group, LLC',
|
||||||
COMPANY_URL: 'https://goforward.group',
|
COMPANY_URL: 'https://goforward.group',
|
||||||
AUTHOR: 'DarkShark Technologies, LLC',
|
AUTHOR: 'Forward Group,, LLC',
|
||||||
META_KEYWORDS: 'Pew Pew',
|
META_KEYWORDS: 'Pew Pew',
|
||||||
META_DESCRIPTION: 'Pow Pow',
|
META_DESCRIPTION: 'Pow Pow',
|
||||||
PJAM_RAINIER: 'https://api.pepperjamnetwork.com/20120402/publisher/creative/product?apiKey=17c11367569cc10dce51e6a5900d0c7c8b390c9cb2d2cecc25b3ed53a3b8649b&format=json&programIds=8713',
|
PJAM_RAINIER: 'https://api.pepperjamnetwork.com/20120402/publisher/creative/product?apiKey=17c11367569cc10dce51e6a5900d0c7c8b390c9cb2d2cecc25b3ed53a3b8649b&format=json&programIds=8713',
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
import "./globals.css"
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import FeaturesSection from "./components/FeaturesSection";
|
import FeaturesSection from "./components/FeaturesSection";
|
||||||
import About from "./components/About";
|
import About from "./components/About";
|
||||||
|
|||||||
@@ -2,9 +2,11 @@ import type { Config } from "tailwindcss";
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
content: [
|
content: [
|
||||||
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
|
'./src/app/pages/**/*.{js,ts,jsx,tsx,mdx}',
|
||||||
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
|
'./src/app/components/**/*.{js,ts,jsx,tsx,mdx}',
|
||||||
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
|
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
|
||||||
|
'./src/app/*.{js,ts,jsx,tsx,mdx}',
|
||||||
|
'./src/**/*.{js, ts, jsx, tsx,mdx}',
|
||||||
],
|
],
|
||||||
theme: {
|
theme: {
|
||||||
extend: {
|
extend: {
|
||||||
|
|||||||
Reference in New Issue
Block a user