diff --git a/theme.config.jsx b/theme.config.jsx
index 577a67d..97564e7 100644
--- a/theme.config.jsx
+++ b/theme.config.jsx
@@ -1,7 +1,87 @@
-export default {
- logo: Production grade dapps documentation,
+const config = {
+ logo: () => {
+ return (
+ <>
+
+ >
+ );
+ },
+ head: (
+ <>
+
+
+
+
+
+ >
+ ),
project: {
- link: 'https://github.com/Anastasia-Labs/production-grade-dapps'
+ link: "https://github.com/Anastasia-Labs/production-grade-dapps",
+ },
+ chat: {
+ link: "https://discord.gg/M5zaz3wX",
+ },
+ toc: {
+ extraContent: <>>,
+ },
+ useNextSeoProps() {
+ const description = "Cardano Development Auditing Firm Your clients are depending on you to deliver safe and reliable applications. Anastasia Labs is a Haskell consultancy specialized in developing mission-critical blockchain applications";
+ return {
+ titleTemplate: "Anastasia Labs | %s",
+ description,
+ canonical: "https://anastasialabs.com",
+ openGraph: {
+ url: "https://anastasialabs.com",
+ description,
+ images: [
+ {
+ url: "https://anastasialabs.com/assets/img/logo/logo.png",
+ width: 800,
+ height: 418,
+ alt: "Anastasia Labs - Where open-source meets impact. Cardano Smart Contracts Audit & Development company",
+ type: "image/png",
+ },
+ ],
+ },
+ siteName: "Anastasia Labs",
+ twitter: {
+ handle: "@AnastasiaLabs",
+ site: "https://anastasialabs.com/",
+ cardType: "summary_large_image",
+ },
+ };
+ },
+ footer: {
+ text: (
+
+ MIT {new Date().getFullYear()} ©{' '}
+
+ Anastasia Labs
+
+ .
+
+ )
}
- // ... other theme options
-}
+};
+
+export default config;