Skip to content

Commit

Permalink
feat(website): update A3 Docs (#13890)
Browse files Browse the repository at this point in the history
  • Loading branch information
2manslkh authored and dionysuzx committed Jun 6, 2023
1 parent 7b24912 commit 4f7b2ed
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
13 changes: 8 additions & 5 deletions packages/website/pages/_app.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import "../styles.css";
import localFont from "next/font/local";

import { Analytics } from "@vercel/analytics/react";
import localFont from "next/font/local";

const grotesk = localFont({
src: "../fonts/ClashGrotesk-Semibold.woff2",
Expand All @@ -16,9 +17,11 @@ const groteskmedium = localFont({

export default function App({ Component, pageProps }) {
return (
<main className={`${grotesk.variable} ${groteskmedium.variable}`}>
<Component {...pageProps} />
<Analytics />
</main>
<>
<main className={`${grotesk.variable} ${groteskmedium.variable}`}>
<Component {...pageProps} />
<Analytics />
</main>
</>
);
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified packages/website/public/images/guides/receive-horse.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 6 additions & 2 deletions packages/website/theme.config.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { useRouter } from "next/router";
import { useConfig } from "nextra-theme-docs";
import Footer from "./components/Footer";
import ThemedImage from "./components/ThemedImage";
import { useConfig } from "nextra-theme-docs";
import { useRouter } from "next/router";

export default {
banner: {
Expand Down Expand Up @@ -41,6 +41,10 @@ export default {
"A decentralized, Ethereum-equivalent ZK-Rollup."
}
/>
<meta
property="og:image"
content={"/images/Taiko_social_media_preview.png"}
/>
<link rel="icon" href="/images/favicon.svg" />
</>
);
Expand Down

0 comments on commit 4f7b2ed

Please sign in to comment.