feat: add blog

This commit is contained in:
Andrea
2023-02-28 14:07:59 +01:00
parent 3a68df6fd0
commit 92a08aca83
26 changed files with 1469 additions and 5205 deletions

20
app/routes/blog_.$id.tsx Normal file
View File

@@ -0,0 +1,20 @@
import { Link } from "@remix-run/react";
export const loader = () => {
throw new Response(null, {
status: 404,
});
};
export default function () {
return (
<div className="m-5 h-max">
<div className="flex flex-col items-center text-[#ffff00] text-3xl font-bold">
foo
</div>
<div className="mt-10 flex flex-col items-end hover:text-[#e6c2bf] text-xl">
<Link to="/blog">Go back</Link>
</div>
</div>
);
}