1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
import Head from "next/head"; export function LandingPageGlobalStyles() { return ( <Head> <style> {` .dark footer, .dark body { background-color: black !important; } .dark .nextra-nav-container .nextra-nav-container-blur { background-color: rgba(0,0,0,.5) !important; } `} </style> </Head> ); }