Skip to content

Commit

Permalink
chat? is this real?
Browse files Browse the repository at this point in the history
  • Loading branch information
alii committed Jul 16, 2024
1 parent 86ee371 commit 43ec29b
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 58 deletions.
7 changes: 6 additions & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {config as dotenv} from 'dotenv';
import { config as dotenv } from 'dotenv';

// @ts-check

Expand Down Expand Up @@ -64,6 +64,11 @@ const config = {
destination: 'https://youtube.com/watch?v=zEoTeUEElZc',
permanent: true,
},
{
source: '/live-04-07-2024',
destination: 'https://youtube.com/watch?v=-XsKN44b7ho',
permanent: true,
},
];
},
};
Expand Down
112 changes: 56 additions & 56 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,58 +1,58 @@
{
"name": "website",
"version": "1.0.0",
"repository": "[email protected]:alii/website.git",
"author": "Alistair Smith <[email protected]>",
"license": "Apache-2.0",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"@types/common-tags": "^1.8.4",
"@types/cookie": "^0.6.0",
"@types/jsonwebtoken": "^9.0.6",
"@types/jwa": "^2.0.3",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^9.0.8",
"autoprefixer": "^10.4.19",
"eslint": "9.5.0",
"eslint-config-next": "14.2.4",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.5",
"sharp": "^0.33.4",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.2"
},
"dependencies": {
"@marsidev/react-turnstile": "^0.7.1",
"@otters/monzo": "^2.1.2",
"alistair": "^1.10.0",
"bwitch": "^0.3.0",
"clsx": "^2.1.1",
"common-tags": "^1.8.2",
"cookie": "^0.6.0",
"dayjs": "^1.11.11",
"dotenv": "^16.4.5",
"envsafe": "^2.0.3",
"framer-motion": "^11.2.11",
"jsonwebtoken": "^9.0.2",
"jwa": "^2.0.0",
"next": "^14.2.4",
"nextkit": "^3.4.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.2.1",
"use-lanyard": "^1.5.2",
"uuid": "^10.0.0",
"zod": "^3.23.8"
}
"name": "website",
"version": "1.0.0",
"repository": "[email protected]:alii/website.git",
"author": "Alistair Smith <[email protected]>",
"license": "Apache-2.0",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"@types/common-tags": "^1.8.4",
"@types/cookie": "^0.6.0",
"@types/jsonwebtoken": "^9.0.6",
"@types/jwa": "^2.0.3",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^9.0.8",
"autoprefixer": "^10.4.19",
"eslint": "9.5.0",
"eslint-config-next": "14.2.4",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.5",
"sharp": "^0.33.4",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.2"
},
"dependencies": {
"@marsidev/react-turnstile": "^0.7.1",
"@otters/monzo": "^2.1.2",
"alistair": "^1.10.0",
"bwitch": "^0.3.0",
"clsx": "^2.1.1",
"common-tags": "^1.8.2",
"cookie": "^0.6.0",
"dayjs": "^1.11.11",
"dotenv": "^16.4.5",
"envsafe": "^2.0.3",
"framer-motion": "^11.2.11",
"jsonwebtoken": "^9.0.2",
"jwa": "^2.0.0",
"next": "^14.2.4",
"nextkit": "^3.4.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.2.1",
"use-lanyard": "^1.5.2",
"uuid": "^10.0.0",
"zod": "^3.23.8"
}
}
2 changes: 1 addition & 1 deletion src/components/time.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ function Day({time}: {time: Date}) {
return (
<div className="relative flex overflow-hidden rounded-2xl bg-gradient-to-br from-[#0A8DFF] to-[#98CFFF] first-letter:w-full">
<div className="flex w-full items-center justify-center">
<div className="opacity-85 flex items-baseline space-x-1 md:space-x-2">
<div className="flex items-baseline space-x-1 opacity-85 md:space-x-2">
<div className="flex flex-col">
<h2 className="text-2xl font-light text-white">{UKTimeFormatter.format(time)}</h2>

Expand Down

0 comments on commit 43ec29b

Please sign in to comment.