From 6b430edfd9b0a148c902f54a7b9630c3e5eb37cf Mon Sep 17 00:00:00 2001 From: opacity Date: Thu, 4 Apr 2024 20:51:06 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E6=88=90=E6=90=9C=E7=B4=A2=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E5=9F=BA=E6=9C=AC=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/images/search/Book-open.svg | 4 + public/images/search/QRcode.svg | 9 +++ public/images/search/Rss.svg | 5 ++ public/images/search/cover.svg | 26 +++++++ public/images/search/icon-big.svg | 10 +++ public/images/search/icon1.svg | 9 +++ public/images/search/rank.svg | 6 ++ public/images/search/search.svg | 4 + public/images/search/underline.svg | 3 + public/images/search/vip.svg | 58 +++++++++++++++ src/app/search/page.tsx | 113 +++++++++++++++++++++++++++++ 11 files changed, 247 insertions(+) create mode 100644 public/images/search/Book-open.svg create mode 100644 public/images/search/QRcode.svg create mode 100644 public/images/search/Rss.svg create mode 100644 public/images/search/cover.svg create mode 100644 public/images/search/icon-big.svg create mode 100644 public/images/search/icon1.svg create mode 100644 public/images/search/rank.svg create mode 100644 public/images/search/search.svg create mode 100644 public/images/search/underline.svg create mode 100644 public/images/search/vip.svg create mode 100644 src/app/search/page.tsx diff --git a/public/images/search/Book-open.svg b/public/images/search/Book-open.svg new file mode 100644 index 0000000..923f1a4 --- /dev/null +++ b/public/images/search/Book-open.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/images/search/QRcode.svg b/public/images/search/QRcode.svg new file mode 100644 index 0000000..cca1f25 --- /dev/null +++ b/public/images/search/QRcode.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/images/search/Rss.svg b/public/images/search/Rss.svg new file mode 100644 index 0000000..925274a --- /dev/null +++ b/public/images/search/Rss.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/images/search/cover.svg b/public/images/search/cover.svg new file mode 100644 index 0000000..1a4aec5 --- /dev/null +++ b/public/images/search/cover.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/search/icon-big.svg b/public/images/search/icon-big.svg new file mode 100644 index 0000000..01ff4fa --- /dev/null +++ b/public/images/search/icon-big.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/images/search/icon1.svg b/public/images/search/icon1.svg new file mode 100644 index 0000000..b4ce36c --- /dev/null +++ b/public/images/search/icon1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/images/search/rank.svg b/public/images/search/rank.svg new file mode 100644 index 0000000..e7dc213 --- /dev/null +++ b/public/images/search/rank.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/images/search/search.svg b/public/images/search/search.svg new file mode 100644 index 0000000..602e6ba --- /dev/null +++ b/public/images/search/search.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/images/search/underline.svg b/public/images/search/underline.svg new file mode 100644 index 0000000..9e9ec86 --- /dev/null +++ b/public/images/search/underline.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/images/search/vip.svg b/public/images/search/vip.svg new file mode 100644 index 0000000..c251e81 --- /dev/null +++ b/public/images/search/vip.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/app/search/page.tsx b/src/app/search/page.tsx new file mode 100644 index 0000000..aba6e99 --- /dev/null +++ b/src/app/search/page.tsx @@ -0,0 +1,113 @@ +import Image from "next/image" +import Navbar from "../_components/common/Navbar"; + +/*import Page from */ + + +const Page=()=>{ + return
+
+ {/*搜索栏和取消*/} +
+
+ search +
心智阅读
+
+ +
取消
+ +
+ + + {/*搜索结果-vip*/} +
+
+ {/* 封面*/} + cover +
+ {/* 标题 */} +
「心智与阅读系列:和人家啊已经 是豪丝娜的」
+ {/* 图标、用户名、vip图标*/} +
+ icon1 +
芋圆
+ vip +
+ {/* 日期*/} +
03.03发布
+
+
+
+ + + {/*搜索结果-普通用户*/} +
+
+ {/* 封面*/} + cover +
+ {/* 标题 */} +
「心智与阅读系列:和人家啊已经 是豪丝娜的」
+ {/* 图标、用户名*/} +
+ icon1 +
芋圆
+
+ {/* 日期*/} +
03.03发布
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+} + + +export default Page; \ No newline at end of file