Skip to content

Commit

Permalink
tidy up and remove the stuff we don't need (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
tackley authored Mar 5, 2024
1 parent add8bce commit 037d9b6
Show file tree
Hide file tree
Showing 7 changed files with 305 additions and 866 deletions.
27 changes: 0 additions & 27 deletions app/globals.css

This file was deleted.

5 changes: 2 additions & 3 deletions app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
import './globals.css'
import { Inter } from 'next/font/google'

const inter = Inter({ subsets: ['latin'] })

export const metadata = {
title: 'Create Next App',
description: 'Generated by create next app',
title: 'Fact! Prod! Calc!',
description: 'Factories. Production. Calculations.',
}

export default function RootLayout({
Expand Down
10 changes: 2 additions & 8 deletions app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,8 @@
import Image from 'next/image'
import Link from 'next/link'

export default function Home() {
return (
<main className="flex min-h-screen flex-col items-center justify-between p-24">
<div className="z-10 w-full max-w-5xl items-center justify-between font-mono text-sm lg:flex">
<p className="fixed left-0 top-0 flex w-full justify-center border-b border-gray-300 bg-gradient-to-b from-zinc-200 pb-6 pt-8 backdrop-blur-2xl dark:border-neutral-800 dark:bg-zinc-800/30 dark:from-inherit lg:static lg:w-auto lg:rounded-xl lg:border lg:bg-gray-200 lg:p-4 lg:dark:bg-zinc-800/30">
Hello World!
</p>
</div>
<main>
Hello?
</main>
)
}
17 changes: 8 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,25 @@
"version": "0.1.0",
"private": true,
"scripts": {
"flask-dev": "FLASK_DEBUG=1 pip3 install -r requirements.txt && python3 -m flask --app api/index run -p 5328",
"next-dev": "next dev",
"dev": "concurrently \"pnpm run next-dev\" \"pnpm run flask-dev\"",
"dev:flask": "FLASK_DEBUG=1 pip3 install -r requirements.txt && python3 -m flask --app api/index run -p 5328",
"dev:next": "next dev",
"dev": "concurrently \"npm:dev:*\"",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"next": "13.5.1",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@types/node": "20.1.4",
"@types/react": "18.2.6",
"@types/react-dom": "18.2.4",
"autoprefixer": "10.4.14",
"concurrently": "^8.0.1",
"eslint": "8.40.0",
"eslint-config-next": "13.4.2",
"next": "13.5.1",
"postcss": "8.4.31",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.3.2",
"typescript": "5.0.4"
}
}
Loading

0 comments on commit 037d9b6

Please sign in to comment.