import type { AppProps } from 'next/app'; import styled, { createGlobalStyle } from 'styled-components'; import Head from 'next/head'; const GlobalStyle = createGlobalStyle` body { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Source Code Pro', monospace; font-size: '17px'; } `; const Container = styled.div` width: 85%; margin: auto; `; const App = ({ Component, pageProps }: AppProps) => { return ( <> Hazem Krimi ); }; export default App;