Skip to content

Commit

Permalink
update name
Browse files Browse the repository at this point in the history
  • Loading branch information
XiangpengHao committed Nov 12, 2024
1 parent 2989e1f commit 10b0205
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Parquet Explorer
# Parquet Viewer

Online at: https://xiangpenghao.github.io/parquet-explorer
Online at: https://xiangpenghao.github.io/parquet-viewer

It compiles [parquet-rs](https://github.com/apache/arrow-rs) to WebAssembly and uses it to explore Parquet files.

![screenshot](doc/parquet-explorer.gif)
![screenshot](doc/parquet-viewer.gif)



Expand Down
Binary file removed doc/parquet-explorer.gif
Binary file not shown.
Binary file added doc/parquet-viewer.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pub fn InfoSection(parquet_info: super::ParquetInfo) -> impl IntoView {

view! {
<div class="bg-white rounded-lg shadow-md p-6">
<h2 class="text-xl font-semibold mb-4">"Basic Information"</h2>
<h2 class="text-xl font-semibold mb-4">"Metadata"</h2>
<div class="grid grid-cols-2 gap-4 bg-gray-50 p-4 rounded-md mb-8">
<div class="space-y-2">
<span class="text-gray-600 text-sm">"File size"</span>
Expand Down Expand Up @@ -107,4 +107,4 @@ pub fn InfoSection(parquet_info: super::ParquetInfo) -> impl IntoView {
</div>
</div>
}
}
}
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -486,9 +486,9 @@ fn App() -> impl IntoView {
view! {
<div class="container mx-auto px-4 py-8 max-w-6xl">
<h1 class="text-3xl font-bold mb-8 flex items-center justify-between">
<span>"Parquet Explorer"</span>
<span>"Parquet Viewer"</span>
<a
href="https://github.com/XiangpengHao/parquet-explorer"
href="https://github.com/XiangpengHao/parquet-viewer"
target="_blank"
class="text-gray-600 hover:text-gray-800"
>
Expand Down

0 comments on commit 10b0205

Please sign in to comment.