diff --git a/next.config.js b/next.config.js
index d3ff2ef..1e32cf4 100644
--- a/next.config.js
+++ b/next.config.js
@@ -1,12 +1,12 @@
-import million from "million/compiler"
-
+import million from 'million/compiler'
+
/** @type {import('next').NextConfig} */
const nextConfig = {
- reactStrictMode: true,
-};
-
+ reactStrictMode: true,
+}
+
const millionConfig = {
- auto: true,
-};
-
-export default million.next(nextConfig, millionConfig);
\ No newline at end of file
+ auto: true,
+}
+
+export default million.next(nextConfig, millionConfig)
diff --git a/postcss.config.js b/postcss.config.js
index 33ad091..fef1b22 100644
--- a/postcss.config.js
+++ b/postcss.config.js
@@ -1,6 +1,6 @@
module.exports = {
- plugins: {
- tailwindcss: {},
- autoprefixer: {},
- },
+ plugins: {
+ tailwindcss: {},
+ autoprefixer: {},
+ },
}
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 40e027f..264b31c 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -5,18 +5,18 @@ import './globals.css'
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,
}: {
- children: React.ReactNode
+ children: React.ReactNode
}) {
- return (
-
-
{children}
-
- )
+ return (
+
+ {children}
+
+ )
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index b973266..0662d59 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,113 +1,111 @@
import Image from 'next/image'
export default function Home() {
- return (
-
-
-
- Get started by editing
- src/app/page.tsx
-
-
-
+ return (
+
+
+
+ Get started by editing
+ src/app/page.tsx
+
+
+
-
-
-
+
+
+
-
+
+ )
}
diff --git a/tailwind.config.ts b/tailwind.config.ts
index 1af3b8f..0b6f553 100644
--- a/tailwind.config.ts
+++ b/tailwind.config.ts
@@ -1,20 +1,19 @@
import type { Config } from 'tailwindcss'
const config: Config = {
- content: [
- './src/pages/**/*.{js,ts,jsx,tsx,mdx}',
- './src/components/**/*.{js,ts,jsx,tsx,mdx}',
- './src/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))',
- },
+ content: [
+ './src/pages/**/*.{js,ts,jsx,tsx,mdx}',
+ './src/components/**/*.{js,ts,jsx,tsx,mdx}',
+ './src/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))',
+ },
+ },
},
- },
- plugins: [],
+ plugins: [],
}
export default config