import React from 'react' import type {AppProps} from "next/app" import "./_app.css" import {LayoutThreeCol, Heading, BringAttention as B, Footer, Anchor as A, useBluelibInBody } from "@steffo/bluelib-react" import {BluelibTheme} from "@steffo/bluelib-react/dist/types" import { ThemeContext } from '../components/ThemeContext' function App({Component, pageProps}: AppProps) { const [theme, setTheme] = React.useState("royalblue") useBluelibInBody(theme) return ( Steffo's website ); } export default App;