"use client"; import { ReactNode } from "react"; import { ThemeProvider, type DefaultTheme } from "styled-components"; import GlobalStyle from "@/app/_components/globalstyles"; const theme: DefaultTheme = { colors: { primary: "#111", secondary: "#0070f3", }, }; export default function ClientLayout({ children }: { children: ReactNode }) { return ( {children} ); }