dependabot/npm_and_yarn/next-14.2.10
Elias Almqvist 11 months ago
parent 40e52a23e5
commit 569c557382
No known key found for this signature in database
GPG Key ID: E31A99CE3E75A158
  1. 20
      package.json
  2. 20
      pnpm-lock.yaml
  3. 8
      src/app/[...dir]/layout.tsx
  4. 20
      src/app/[...dir]/page.tsx
  5. 4
      src/app/layout.tsx
  6. 62
      src/app/page.tsx

@ -22,20 +22,20 @@
"lucide-react": "^0.363.0",
"next": "14.1.4",
"next-themes": "^0.3.0",
"react": "^18",
"react-dom": "^18",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"@types/node": "^20.11.30",
"@types/react": "^18.2.73",
"@types/react-dom": "^18.2.23",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-next": "14.1.4",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"typescript": "^5"
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.3"
}
}

@ -39,10 +39,10 @@ dependencies:
specifier: ^0.3.0
version: 0.3.0(react-dom@18.2.0)(react@18.2.0)
react:
specifier: ^18
specifier: ^18.2.0
version: 18.2.0
react-dom:
specifier: ^18
specifier: ^18.2.0
version: 18.2.0(react@18.2.0)
tailwind-merge:
specifier: ^2.2.2
@ -53,31 +53,31 @@ dependencies:
devDependencies:
'@types/node':
specifier: ^20
specifier: ^20.11.30
version: 20.11.30
'@types/react':
specifier: ^18
specifier: ^18.2.73
version: 18.2.73
'@types/react-dom':
specifier: ^18
specifier: ^18.2.23
version: 18.2.23
autoprefixer:
specifier: ^10.0.1
specifier: ^10.4.19
version: 10.4.19(postcss@8.4.38)
eslint:
specifier: ^8
specifier: ^8.57.0
version: 8.57.0
eslint-config-next:
specifier: 14.1.4
version: 14.1.4(eslint@8.57.0)(typescript@5.4.3)
postcss:
specifier: ^8
specifier: ^8.4.38
version: 8.4.38
tailwindcss:
specifier: ^3.3.0
specifier: ^3.4.3
version: 3.4.3
typescript:
specifier: ^5
specifier: ^5.4.3
version: 5.4.3
packages:

@ -1,7 +1,5 @@
const Layout = ({
children,
}: Readonly<{
children: React.ReactNode;
}>) => <div className="prose dark:prose-dark max-w-screen-lg">{children}</div>;
const Layout = ({ children }: { children: React.ReactNode }) => (
<div className="prose dark:prose-dark max-w-screen-lg">{children}</div>
);
export default Layout;

@ -0,0 +1,20 @@
import { notFound } from "next/navigation";
type Log = {
title: string;
createdAt: Date;
updatedAt: Date;
content: React.ReactNode;
};
const Page = async () => {
const post = undefined;
if (!post) {
return notFound();
}
return <h1>WIP</h1>;
};
export default Page;

@ -17,9 +17,9 @@ const fontSans = FontSans({
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en">
<body

@ -1,5 +1,63 @@
import Image from "next/image";
"use client";
import { useTheme } from "next-themes";
export default function Home() {
return <h1>TEST</h1>;
const theme = useTheme();
return (
<>
<section>
<h2 id="about">/almqv</h2>
<p>
I am a 100201-year-old <em>engineer</em> with a passion for{" "}
<em>CS</em>, <em>physics</em>, and <em>mathematics</em>.
</p>
<p>
I am also a startup founder. Currently working on{" "}
<a
href="https://www.linkedin.com/company/ingenuityai/"
target="_blank"
rel="noreferrer"
>
ingenuity
</a>
.
</p>
{/*TODO: Add GitHub code frequency/contrib here*/}
<p className="topmargin">
Most of my projects are open-source, and if you are interested, you
can find all of my projects on my{" "}
<a href="https://git.wych.dev/elal" target="_blank" rel="noreferrer">
git-server
</a>{" "}
or{" "}
<a href="https://github.com/almqv" target="_blank" rel="noreferrer">
GitHub
</a>
.
</p>
</section>
<section>
<h2 id="contact">Contact</h2>
<p>
You can contact me through email. And if you prefer it, you can
contact me using PGP.
</p>
<ul>
<li>
PGP fingerprint:{" "}
<code>68B2 9768 49F0 3C72 38AE B081 E31A 99CE 3E75 A158</code>
</li>
<li>Email: elalmqvist@gmail.com</li>
<li>
GitHub:{" "}
<a href="https://github.com/almqv" target="_blank" rel="noreferrer">
github.com/almqv
</a>
</li>
</ul>
</section>
</>
);
}

Loading…
Cancel
Save