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",
|
||||
"private": "true",
|
||||
"scripts": {
|
||||
"dev": "next dev",
|
||||
"dev": "next dev --turbo",
|
||||
"build": "next build",
|
||||
"start": "next start",
|
||||
"lint": "next lint"
|
||||
|
||||
@@ -3,9 +3,7 @@ export const metadata = {
|
||||
description: 'Generated by Next.js',
|
||||
}
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: {
|
||||
export default function RootLayout({ children,}: {
|
||||
children: React.ReactNode
|
||||
}) {
|
||||
return (
|
||||
@@ -13,4 +11,4 @@ export default function RootLayout({
|
||||
<body>{children}</body>
|
||||
</html>
|
||||
)
|
||||
}
|
||||
}
|
||||
@@ -1,15 +1,15 @@
|
||||
export const APP_NAME = "The Gun Bag - Gun Builder";
|
||||
export const COMPANY_NAME = "DarkShark Technologies, LLC";
|
||||
export const APP_NAME = "Ballistic Builder";
|
||||
export const COMPANY_NAME = "Forward Group, LLC";
|
||||
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_DESCRIPTION = "Pow Pow";
|
||||
export default {
|
||||
APP_NAME: 'The Gun Bag - Gun Builder',
|
||||
SITE_NAME: 'Gun Builder',
|
||||
COMPANY_NAME: 'DarkShark Technologies, LLC',
|
||||
APP_NAME: 'Ballistic Builder',
|
||||
SITE_NAME: 'Ballistic Builder',
|
||||
COMPANY_NAME: 'Forward Group, LLC',
|
||||
COMPANY_URL: 'https://goforward.group',
|
||||
AUTHOR: 'DarkShark Technologies, LLC',
|
||||
AUTHOR: 'Forward Group,, LLC',
|
||||
META_KEYWORDS: 'Pew Pew',
|
||||
META_DESCRIPTION: 'Pow Pow',
|
||||
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 FeaturesSection from "./components/FeaturesSection";
|
||||
import About from "./components/About";
|
||||
|
||||
@@ -2,9 +2,11 @@ import type { Config } from "tailwindcss";
|
||||
|
||||
export default {
|
||||
content: [
|
||||
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
|
||||
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
|
||||
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
|
||||
'./src/app/pages/**/*.{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/**/*.{js, ts, jsx, tsx,mdx}',
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
|
||||
Reference in New Issue
Block a user