working again, missing global.css in page.tsx

This commit is contained in:
2024-11-20 21:56:30 -05:00
parent 4de7d55b55
commit d1bd68e720
6 changed files with 16 additions and 15 deletions

View File

@@ -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>
)
}
}

View File

@@ -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',

View File

@@ -1,3 +1,4 @@
import "./globals.css"
import Link from "next/link";
import FeaturesSection from "./components/FeaturesSection";
import About from "./components/About";