chore: add .prettierrc and commit fixed files

This commit is contained in:
Mathias Schopmans
2024-02-09 09:08:17 +01:00
committed by Mathias Schopmans
parent f15164c5cd
commit 4b5a7abbc9
4 changed files with 16 additions and 3 deletions

View File

@@ -1,6 +1,7 @@
import "@/styles/globals.css";
import type { AppProps } from "next/app";
import "@/styles/globals.css";
export default function App({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />;
}

View File

@@ -1,4 +1,4 @@
import { Html, Head, Main, NextScript } from "next/document";
import { Head, Html, Main, NextScript } from "next/document";
export default function Document() {
return (

View File

@@ -1,6 +1,7 @@
import { Inter } from "next/font/google";
import Head from "next/head";
import Image from "next/image";
import { Inter } from "next/font/google";
import styles from "@/styles/Home.module.css";
const inter = Inter({ subsets: ["latin"] });