- Introduced blog routing using Next.js App Router - Implemented dynamic [slug] pages for blog posts - Added MDX-based content loading via lib/posts - Integrated shared TopBar layout with navigation - Established clear content, lib and component separation
16 lines
261 B
TypeScript
16 lines
261 B
TypeScript
declare module 'styled-jsx/macro' {
|
|
import type { JSX } from "react";
|
|
|
|
namespace macro {
|
|
function resolve(
|
|
chunks: TemplateStringsArray,
|
|
...args: any[]
|
|
): {
|
|
className: string
|
|
styles: JSX.Element
|
|
}
|
|
}
|
|
|
|
export = macro
|
|
}
|