.prettier

This commit is contained in:
skidoodle 2023-04-11 01:38:43 +02:00
parent 7a5427ffc2
commit 17bf66129a
6 changed files with 22 additions and 17 deletions

View file

@ -15,7 +15,7 @@ export const MainLayout = () => {
<p className='text-2xl text-gray-600 dark:text-gray-400 mt-2 font-semibold'>
{Math.floor(
(new Date().getTime() - new Date('2004-07-22').getTime()) /
(1000 * 60 * 60 * 24 * 365.25)
(1000 * 60 * 60 * 24 * 365.25),
)}
-year-old system administrator
</p>

View file

@ -10,7 +10,7 @@ const inter = Inter({
variable: '--font-inter',
});
export default function App({ Component, pageProps }: AppProps) {
export default function App ({ Component, pageProps }: AppProps) {
return (
<>
<Head>

View file

@ -1,6 +1,6 @@
import { Html, Head, Main, NextScript } from 'next/document';
export default function Document() {
export default function Document () {
return (
<Html lang='en'>
<Head>

View file

@ -1,6 +1,6 @@
import { MainLayout } from '@/components/MainLayout';
export default function Home() {
export default function Home () {
return (
<>
<MainLayout />