Colors work on inline code lets go

This commit is contained in:
Timothy Pidashev
2024-06-09 17:59:08 -07:00
parent 6bd0616d54
commit efa4be2fd9
6 changed files with 204 additions and 2 deletions

View File

@@ -1,9 +1,11 @@
// Imports
import "@/style/globals.css";
import "@/style/prism-theme.css";
import Theme from "@/app/theme";
import Header from "@/components/header";
import Footer from "@/components/footer";
import Container from "@/components/ui/container";
import Head from 'next/head';
// Metadata
export const metadata = {
@@ -15,6 +17,9 @@ export const metadata = {
export default function Layout({children}) {
return (
<html lang="en" suppressHydrationWarning>
<Head>
<script src="prism.js"></script>
</Head>
<body className="
bg-light-background text-light-foreground
dark:bg-dark-background dark:text-dark-foreground