diff --git a/package.json b/package.json index a1cd476..f69cba6 100644 --- a/package.json +++ b/package.json @@ -19,6 +19,7 @@ "@radix-ui/react-slot": "^1.0.2", "@radix-ui/react-toast": "^1.1.5", "@types/qrcode": "^1.5.5", + "@types/react-window": "^1.8.8", "@types/uuid": "^9.0.8", "class-variance-authority": "^0.7.0", "clsx": "^2.1.0", @@ -32,6 +33,7 @@ "qs": "^6.12.0", "react": "^18", "react-dom": "^18", + "react-window": "^1.8.10", "tailwind-merge": "^2.2.2", "uuid": "^9.0.1", "zustand": "^4.5.2" diff --git a/src/app/download/page.tsx b/src/app/download/page.tsx index 22e552b..07c9cfb 100644 --- a/src/app/download/page.tsx +++ b/src/app/download/page.tsx @@ -5,7 +5,7 @@ import DownloadCard from '@/app/download/components/DownloadCard'; import type { Metadata } from 'next'; export const metadata: Metadata = { - title: '下载', + title: 'APP下载', }; const qrCodeList: Array = [ diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2acdf8a..fd6b8e1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -3,7 +3,7 @@ import Script from 'next/script'; import { Toaster } from '@/components/ui/toaster'; -import { Header, Footer, PlayerBar, ScrollTopButton } from '@/components'; +import { Header, App, Footer, PlayerBar, ScrollTopButton } from '@/components'; import './globals.css'; @@ -12,7 +12,8 @@ export const metadata: Metadata = { template: '%s - 雀乐', default: '雀乐', }, - description: '独立 不独于世', + description: + '雀乐是由一群喜欢并热爱独立音乐的人共同创建的,我们致力于传播来自世界各地的独立音乐。我们秉着音乐里独立自主的精神表达内核,希望把雀乐建设成为泛华语地区最好的独立音乐传播平台。', icons: { icon: '/favicon.ico', }, @@ -31,6 +32,7 @@ export default function RootLayout({ children }: Readonly<{ children: React.Reac return ( +
{children}