Fix eslint errors, adding shell scripts

This commit is contained in:
Joshua Higgins
2025-05-26 22:44:46 -04:00
parent 885899bed3
commit 6aa60ca01d
3 changed files with 5 additions and 3 deletions

1
docker_build.sh Normal file
View File

@@ -0,0 +1 @@
docker build -t kdot .

1
docker_run.sh Normal file
View File

@@ -0,0 +1 @@
docker run -d -p 3004:3000 --restart unless-stopped kdot:latest

View File

@@ -1,10 +1,10 @@
import { getPost } from "@/lib/posts" import { getPost } from "@/lib/posts"
import { notFound } from "next/navigation" import { notFound } from "next/navigation"
import Link from "next/link" // import Link from "next/link"
import Markdown from 'react-markdown' import Markdown from 'react-markdown'
import { ArrowLeft } from "lucide-react" // import { ArrowLeft } from "lucide-react"
import Navbar from "@/components/navbar"; import Navbar from "@/components/navbar";
import Image from "next/image"; // import Image from "next/image";
import RecordBox from "@/components/recordbox"; import RecordBox from "@/components/recordbox";
interface PostPageProps { interface PostPageProps {