diff --git a/bun.lockb b/bun.lockb index 36a0278..9ba1994 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/docusaurus.config.ts b/docusaurus.config.ts index 5a55dee..3bde182 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -20,7 +20,7 @@ const config: Config = { title: "ZUNI Lab", tagline: "Building innovative privacy-preserving solutions for the decentralized world.", - favicon: "img/favicon.ico", + favicon: "img/favicon.svg", // Set the production url of your site here url: "https://zuni-lab.github.io", diff --git a/package.json b/package.json index 07a91d0..da5813f 100644 --- a/package.json +++ b/package.json @@ -18,6 +18,7 @@ "@docusaurus/core": "3.2.1", "@docusaurus/preset-classic": "3.2.1", "@mdx-js/react": "^3.0.0", + "classnames": "^2.5.1", "clsx": "^2.0.0", "prism-react-renderer": "^2.3.0", "react": "^18.0.0", diff --git a/src/components/Containter.tsx b/src/components/Containter.tsx new file mode 100644 index 0000000..e07aef7 --- /dev/null +++ b/src/components/Containter.tsx @@ -0,0 +1,19 @@ +import { cx } from "../utils/tool"; +import styles from "./style.module.css"; + +export const Container = (props: { + children: React.ReactNode; + className?: string; +}) => { + return ( +
ZUNI Laboratory - is a pioneering research and development lab at the forefront of - art and technology. Our passion lies in delving into the - potential of decentralized technologies and creating innovative - applications that have a transformative impact on society. -
-- Our diverse team comprises engineers, researchers, and artists, - all united by a shared passion for leveraging the power of - decentralized technologies. We are committed to pushing the - boundaries of what's possible and creating applications that - enrich and enhance people's lives. + is made up of engineers, researchers, and artists, all united by + a shared passion for leveraging the power of decentralized + technologies. We are committed to pushing the boundaries of + what's possible and creating applications that enrich and + enhance people's lives.
-- At our organization, we focus on researching and developing - cutting-edge web3 and blockchain applications that can help - bring about a more decentralized and transparent world. Some of - our key areas of focus include: -
-
Our primary goal is to build innovative applications that can
help drive the adoption of web3 and blockchain technologies. We
diff --git a/src/theme/Footer/index.tsx b/src/theme/Footer/index.tsx
index 0d3d853..b8795f1 100644
--- a/src/theme/Footer/index.tsx
+++ b/src/theme/Footer/index.tsx
@@ -5,10 +5,9 @@ import type FooterType from "@theme/Footer";
type Props = WrapperProps