chore: format

This commit is contained in:
Aaron Yarborough 2025-03-16 12:04:49 +00:00
parent 3a889b1442
commit fb00967601

View file

@ -1,15 +1,15 @@
import '@/styles/globals.css'
import "highlight.js/styles/atom-one-dark.css";
import 'highlight.js/styles/atom-one-dark.css'
import hljs from "highlight.js";
import hljs from 'highlight.js'
import { DefaultSeo } from 'next-seo'
import { useEffect } from 'react';
import { useEffect } from 'react'
export default function App ({ Component, pageProps }) {
useEffect(() => {
hljs.highlightAll();
}, [ Component ]);
hljs.highlightAll()
}, [Component])
return (
<>
<DefaultSeo defaultTitle='Aaron Yarborough' titleTemplate='%s | Aaron Yarborough' />