Refactor code structure for improved readability and maintainability

This commit is contained in:
2026-03-10 16:37:55 +07:00
parent 75ed8e233b
commit 8908395867
45 changed files with 2528 additions and 365 deletions
+1 -3
View File
@@ -1,6 +1,5 @@
import type { Metadata, Viewport } from 'next'
import { Be_Vietnam_Pro } from 'next/font/google'
import { Analytics } from '@vercel/analytics/next'
import { ThemeProvider } from '@/components/theme-provider'
import { AuthProvider } from '@/lib/auth-context'
import { BookmarkProvider } from '@/lib/bookmark-context'
@@ -15,7 +14,7 @@ const beVietnam = Be_Vietnam_Pro({
})
export const metadata: Metadata = {
title: 'TruyenChu - Đọc Truyện Chữ Online',
title: "Virtus's Reader - Đọc Truyện Chữ Online",
description: 'Đọc truyện chữ online miễn phí - Tiên hiệp, Huyền huyễn, Ngôn tình, Kiếm hiệp và nhiều thể loại khác',
generator: 'v0.app',
icons: {
@@ -63,7 +62,6 @@ export default function RootLayout({
</BookmarkProvider>
</AuthProvider>
</ThemeProvider>
<Analytics />
</body>
</html>
)