feat(blog): add /blog routes with dedicated editorial layout

This commit is contained in:
kbot
2026-07-06 20:22:27 -05:00
parent ff58dd000c
commit 5b3e24ca78
5 changed files with 210 additions and 0 deletions

15
app/blog/template.tsx Normal file
View File

@@ -0,0 +1,15 @@
"use client";
import { m } from "motion/react";
export default function Template({ children }: { children: React.ReactNode }) {
return (
<m.div
initial={{ opacity: 0, y: 8 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.4, ease: "easeOut" }}
>
{children}
</m.div>
);
}