diff --git a/app/globals.css b/app/globals.css index dc98be7..838d5e9 100644 --- a/app/globals.css +++ b/app/globals.css @@ -119,4 +119,7 @@ body { @apply bg-background text-foreground; } + .pricing-page { + @apply bg-background text-foreground; + } } diff --git a/app/layout.tsx b/app/layout.tsx index 576fea5..0dba9b7 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -3,6 +3,7 @@ import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; import { Header } from "@/components/ui/header"; +import { ThemeProvider } from "@/lib/theme-context"; const geistSans = Geist({ variable: "--font-geist-sans", @@ -29,10 +30,10 @@ export default function RootLayout({
-