Skip to content

Commit f80b07c

Browse files
chore: bump deps
1 parent 9ba465d commit f80b07c

File tree

7 files changed

+394
-380
lines changed

7 files changed

+394
-380
lines changed

package-lock.json

Lines changed: 373 additions & 358 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
},
1919
"dependencies": {
2020
"@headlessui/react": "1.7.13",
21-
"@heroicons/react": "2.0.16",
21+
"@heroicons/react": "2.0.17",
2222
"lodash": "4.17.21",
23-
"next": "13.2.4",
23+
"next": "13.3.0",
2424
"openai": "3.2.1",
2525
"react": "18.2.0",
2626
"react-dom": "18.2.0",
@@ -30,20 +30,20 @@
3030
"devDependencies": {
3131
"@tailwindcss/forms": "0.5.3",
3232
"@types/ffmpeg": "1.0.4",
33-
"@types/lodash": "4.14.191",
34-
"@types/node": "18.15.7",
35-
"@types/react": "18.0.28",
33+
"@types/lodash": "4.14.192",
34+
"@types/node": "18.15.11",
35+
"@types/react": "18.0.33",
3636
"@types/react-dom": "18.0.11",
3737
"@types/tmp": "0.2.3",
3838
"autoprefixer": "10.4.14",
39-
"eslint": "8.36.0",
40-
"eslint-config-next": "13.2.4",
39+
"eslint": "8.37.0",
40+
"eslint-config-next": "13.3.0",
4141
"postcss": "8.4.21",
4242
"prettier": "2.8.7",
43-
"prettier-plugin-tailwindcss": "0.2.5",
44-
"stylelint": "15.3.0",
45-
"stylelint-config-standard": "31.0.0",
46-
"tailwindcss": "3.2.7",
47-
"typescript": "5.0.2"
43+
"prettier-plugin-tailwindcss": "0.2.7",
44+
"stylelint": "15.4.0",
45+
"stylelint-config-standard": "32.0.0",
46+
"tailwindcss": "3.3.1",
47+
"typescript": "5.0.3"
4848
}
4949
}

src/app/error.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const Error: FC<Props> = ({ error, reset }) => {
1313
}, [error]);
1414

1515
return (
16-
<main className="grid min-h-full place-items-center bg-white py-24 px-6 sm:py-32 lg:px-8">
16+
<main className="grid min-h-full place-items-center bg-white px-6 py-24 sm:py-32 lg:px-8">
1717
<div className="text-center">
1818
<p className="text-base font-semibold text-red-600">500</p>
1919
<h1 className="mt-4 text-3xl font-bold tracking-tight text-gray-900 sm:text-5xl">

src/app/not-found.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Link from 'next/link';
22
import { FC } from 'react';
33

44
const NotFound: FC = () => (
5-
<main className="grid min-h-full place-items-center bg-white py-24 px-6 sm:py-32 lg:px-8">
5+
<main className="grid min-h-full place-items-center bg-white px-6 py-24 sm:py-32 lg:px-8">
66
<div className="text-center">
77
<p className="text-base font-semibold text-red-600">404</p>
88
<h1 className="mt-4 text-3xl font-bold tracking-tight text-gray-900 sm:text-5xl">

src/components/ActionBar/ActionBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ const ActionBar: FC<Props> = ({ entries, setEntries }) => {
5555
<button
5656
onClick={handleSubmit}
5757
type="button"
58-
className="rounded-md bg-indigo-600 py-2 px-8 text-sm font-semibold text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600"
58+
className="rounded-md bg-indigo-600 px-8 py-2 text-sm font-semibold text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600"
5959
>
6060
Sum
6161
</button>

src/components/Footer/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const navigation = {
5757
const Footer = () => {
5858
return (
5959
<footer className="bg-white">
60-
<div className="mx-auto max-w-7xl overflow-hidden py-20 px-6 sm:py-24 lg:px-8">
60+
<div className="mx-auto max-w-7xl overflow-hidden px-6 py-20 sm:py-24 lg:px-8">
6161
<nav
6262
className="-mb-6 columns-2 sm:flex sm:justify-center sm:space-x-12"
6363
aria-label="Footer"

src/components/IntroCard/IntroCard.tsx

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
'use client';
2-
import Link from 'next/link';
32
import { ChangeEvent, FC, useEffect, useState } from 'react';
43
import { prompts } from '~/constants';
54

@@ -35,8 +34,8 @@ const IntroCard: FC<Props> = ({
3534
}, [file, text]);
3635

3736
return (
38-
<section className="flex justify-center bg-blue-50 pt-16 pb-20 lg:px-8 lg:pt-24 lg:pb-28">
39-
<div className="flex w-full max-w-6xl flex-col rounded-lg bg-white px-16 pt-16 pb-4 shadow-lg">
37+
<section className="flex justify-center bg-blue-50 pb-20 pt-16 lg:px-8 lg:pb-28 lg:pt-24">
38+
<div className="flex w-full max-w-6xl flex-col rounded-lg bg-white px-16 pb-4 pt-16 shadow-lg">
4039
<div className="max-w-md">
4140
<span className="text-sm font-bold text-indigo-600">
4241
AI gjort enkelt
@@ -130,7 +129,7 @@ const IntroCard: FC<Props> = ({
130129
disabled={disabled || loading}
131130
onClick={() => !disabled && handleSubmit()}
132131
type="button"
133-
className={`rounded-md bg-indigo-600 py-2 px-8 text-sm font-semibold text-white shadow-sm focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600 ${
132+
className={`rounded-md bg-indigo-600 px-8 py-2 text-sm font-semibold text-white shadow-sm focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600 ${
134133
disabled
135134
? 'cursor-not-allowed opacity-50'
136135
: 'hover:bg-indigo-500'
@@ -143,13 +142,13 @@ const IntroCard: FC<Props> = ({
143142
</div>
144143
<p className="mt-8 text-center text-sm text-gray-500">
145144
Sum bruker OpenAIs tjenestene ChatGPT og Whisper, se deres{' '}
146-
<Link
145+
<a
147146
href="https://openai.com/policies/api-data-usage-policies"
148147
target="_blank"
149148
className="text-indigo-600 hover:text-indigo-500"
150149
>
151150
personvernerklæring her.
152-
</Link>
151+
</a>
153152
</p>
154153
</div>
155154
</section>

0 commit comments

Comments
 (0)