From d1bd68e7209bf1c5d6c66fbb243c22cb9c5c5b05 Mon Sep 17 00:00:00 2001 From: Don Starwsburg Date: Wed, 20 Nov 2024 21:56:30 -0500 Subject: [PATCH] working again, missing global.css in page.tsx --- package.json | 2 +- src/app/components/{ => Header}/Header.tsx | 0 src/app/layout.tsx | 6 ++---- src/app/lib/constants.ts | 14 +++++++------- src/app/page.tsx | 1 + tailwind.config.ts | 8 +++++--- 6 files changed, 16 insertions(+), 15 deletions(-) rename src/app/components/{ => Header}/Header.tsx (100%) diff --git a/package.json b/package.json index 82f67f9..30a434f 100644 --- a/package.json +++ b/package.json @@ -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" diff --git a/src/app/components/Header.tsx b/src/app/components/Header/Header.tsx similarity index 100% rename from src/app/components/Header.tsx rename to src/app/components/Header/Header.tsx diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a14e64f..b5807f7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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({ {children} ) -} +} \ No newline at end of file diff --git a/src/app/lib/constants.ts b/src/app/lib/constants.ts index 999a6d9..3aee3fa 100644 --- a/src/app/lib/constants.ts +++ b/src/app/lib/constants.ts @@ -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', diff --git a/src/app/page.tsx b/src/app/page.tsx index 39826ca..ca0688a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,3 +1,4 @@ +import "./globals.css" import Link from "next/link"; import FeaturesSection from "./components/FeaturesSection"; import About from "./components/About"; diff --git a/tailwind.config.ts b/tailwind.config.ts index 109807b..c77b8b4 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -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: {