From 91d5887364de9936905e31fdc876f245b323d339 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 5 Oct 2023 09:21:24 -0700 Subject: [PATCH] prettier --- website/app/layout.tsx | 18 +++++++++--------- website/app/page.tsx | 14 +++++++------- website/next.config.js | 4 ++-- website/postcss.config.js | 2 +- website/tailwind.config.ts | 18 +++++++++--------- 5 files changed, 28 insertions(+), 28 deletions(-) diff --git a/website/app/layout.tsx b/website/app/layout.tsx index ae8456212..573229987 100644 --- a/website/app/layout.tsx +++ b/website/app/layout.tsx @@ -1,22 +1,22 @@ -import './globals.css' -import type { Metadata } from 'next' -import { Inter } from 'next/font/google' +import "./globals.css"; +import type { Metadata } from "next"; +import { Inter } from "next/font/google"; -const inter = Inter({ subsets: ['latin'] }) +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: 'Create Next App', - description: 'Generated by create next app', -} + title: "Create Next App", + description: "Generated by create next app", +}; export default function RootLayout({ children, }: { - children: React.ReactNode + children: React.ReactNode; }) { return ( {children} - ) + ); } diff --git a/website/app/page.tsx b/website/app/page.tsx index 7a8286b57..e99d5e3db 100644 --- a/website/app/page.tsx +++ b/website/app/page.tsx @@ -1,4 +1,4 @@ -import Image from 'next/image' +import Image from "next/image"; export default function Home() { return ( @@ -15,7 +15,7 @@ export default function Home() { target="_blank" rel="noopener noreferrer" > - By{' '} + By{" "} Vercel Logo

- Docs{' '} + Docs{" "} -> @@ -64,7 +64,7 @@ export default function Home() { rel="noopener noreferrer" >

- Learn{' '} + Learn{" "} -> @@ -81,7 +81,7 @@ export default function Home() { rel="noopener noreferrer" >

- Templates{' '} + Templates{" "} -> @@ -98,7 +98,7 @@ export default function Home() { rel="noopener noreferrer" >

- Deploy{' '} + Deploy{" "} -> @@ -109,5 +109,5 @@ export default function Home() { - ) + ); } diff --git a/website/next.config.js b/website/next.config.js index 767719fc4..658404ac6 100644 --- a/website/next.config.js +++ b/website/next.config.js @@ -1,4 +1,4 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {} +const nextConfig = {}; -module.exports = nextConfig +module.exports = nextConfig; diff --git a/website/postcss.config.js b/website/postcss.config.js index 33ad091d2..12a703d90 100644 --- a/website/postcss.config.js +++ b/website/postcss.config.js @@ -3,4 +3,4 @@ module.exports = { tailwindcss: {}, autoprefixer: {}, }, -} +}; diff --git a/website/tailwind.config.ts b/website/tailwind.config.ts index c7ead8046..7e4bd91a0 100644 --- a/website/tailwind.config.ts +++ b/website/tailwind.config.ts @@ -1,20 +1,20 @@ -import type { Config } from 'tailwindcss' +import type { Config } from "tailwindcss"; const config: Config = { content: [ - './pages/**/*.{js,ts,jsx,tsx,mdx}', - './components/**/*.{js,ts,jsx,tsx,mdx}', - './app/**/*.{js,ts,jsx,tsx,mdx}', + "./pages/**/*.{js,ts,jsx,tsx,mdx}", + "./components/**/*.{js,ts,jsx,tsx,mdx}", + "./app/**/*.{js,ts,jsx,tsx,mdx}", ], theme: { extend: { backgroundImage: { - 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))', - 'gradient-conic': - 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))', + "gradient-radial": "radial-gradient(var(--tw-gradient-stops))", + "gradient-conic": + "conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))", }, }, }, plugins: [], -} -export default config +}; +export default config;