- 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
5 lines
295 B
TypeScript
5 lines
295 B
TypeScript
import type { ComponentProps } from 'react';
|
|
import ClientLinkComponent, { type LinkProps, useLinkStatus } from './link';
|
|
export default function LinkComponent(props: ComponentProps<typeof ClientLinkComponent>): import("react/jsx-runtime").JSX.Element;
|
|
export { type LinkProps, useLinkStatus };
|