mirror of
https://github.com/snowykami/neo-blog.git
synced 2025-09-26 11:06:23 +00:00
- Added BlogHome component for displaying posts with sorting options (latest/popular). - Integrated Sidebar with About, Hot Posts, Tags, and Misskey Iframe components. - Created BlogPost component to render individual posts with metadata and content. - Developed GravatarAvatar component for user avatars. - Implemented Markdown rendering with syntax highlighting and custom code blocks. - Added pagination component for navigating through posts. - Enhanced login form with OpenID Connect options and email/password authentication. - Utility functions for generating post URLs and calculating reading time.
9 lines
130 B
TypeScript
9 lines
130 B
TypeScript
"use client";
|
|
|
|
import BlogHome from "@/components/blog-home/blog-home";
|
|
|
|
|
|
export default function Page(){
|
|
return <BlogHome />
|
|
}
|