Skip to content

Commit

Permalink
[]
Browse files Browse the repository at this point in the history
  • Loading branch information
steward379 committed Jan 10, 2024
1 parent d7ba78a commit 64bb03d
Show file tree
Hide file tree
Showing 7 changed files with 211 additions and 28 deletions.
135 changes: 130 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"lint": "next lint"
},
"dependencies": {
"@blocto/sdk": "^0.9.0-beta.2",
"@clerk/clerk-react": "^4.28.2",
"@clerk/nextjs": "^4.27.3",
"@clerk/themes": "^1.7.9",
Expand Down Expand Up @@ -55,7 +56,7 @@
"tailwindcss": "3.3.3",
"three": "^0.158.0",
"typescript": "5.2.2",
"web3": "^1.2.0",
"web3": "^1.10.3",
"web3-utils": "^4.1.0",
"xml2js": "^0.6.2",
"zustand": "^4.4.7"
Expand Down
Binary file modified public/images/ballon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/images/image-1.png
Binary file not shown.
2 changes: 1 addition & 1 deletion src/layouts/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const Layout = ({ children }) => {
return (
<>
<Navbar />
<main className={` mt-20`}>{children}</main>
<main className={`mt-20`}>{children}</main>
</>
);
};
Expand Down
26 changes: 14 additions & 12 deletions src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,20 +30,22 @@ const MyApp = ({ Component, pageProps }: AppProps) => {
>
<AuthProvider>
<LastUpdateProvider>
<Head>
<title>Hidden Gem Spot 旅圓</title>
<meta name="description" content="Hidden Gem 旅圓,讓你記錄每一趟生活冒險。" />
<meta property="og:title" content="Hidden Gem 旅圓" />
<meta property="og:description" content="Travel, Note & Discover the hidden gems around you."/>
<meta property="og:url" content="https://hidden-gem.xyz/" />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://hidden-gem.xyz/images/og-image.png" />
<meta property="og:site_name" content="Hidden Gem" />
<meta property="og:locale" content="zh_TW" />
<Head>
<title>Hidden Gem Spot 旅圓</title>
<meta name="description" content="Hidden Gem 旅圓,讓你記錄每一趟生活冒險。" />
<meta property="og:title" content="Hidden Gem 旅圓" />
<meta property="og:description" content="Travel, Note & Discover the hidden gems around you."/>
<meta property="og:url" content="https://hidden-gem.xyz/" />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://hidden-gem.xyz/images/og-image.png" />
<meta property="og:site_name" content="Hidden Gem" />
<meta property="og:locale" content="zh_TW" />
</Head>

<Layout>
<Component {...pageProps} />
</Layout>
<Component {...pageProps} />
</Layout>

</LastUpdateProvider>
</AuthProvider>
</ClerkProvider>
Expand Down
Loading

1 comment on commit 64bb03d

@vercel
Copy link

@vercel vercel bot commented on 64bb03d Jan 10, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.