diff --git a/src/components/Header.astro b/src/components/Header.astro
index 22a071d..7bd4c3c 100644
--- a/src/components/Header.astro
+++ b/src/components/Header.astro
@@ -17,6 +17,10 @@ const isActive = (href: string)=>{
return href === pathname || href === pathname.split('/').slice(0,2).join('/');
}
+function handleMenu(e) {
+ console.log(e);
+}
+
---
@@ -35,8 +39,25 @@ const isActive = (href: string)=>{
-
\ No newline at end of file
+
+
+
\ No newline at end of file
diff --git a/src/components/TableOfContents.astro b/src/components/TableOfContents.astro
index d634610..d4b7991 100644
--- a/src/components/TableOfContents.astro
+++ b/src/components/TableOfContents.astro
@@ -3,12 +3,10 @@
import TableOfContentsHeading from "./TableOfContentsHeading.astro";
import TocItem from '../utils/generateToc.ts';
const { headings, edit } = Astro.props;
-import { REPOSITORY, edit_page } from "../config";
+import { REPOSITORY } from "../config";
const toc = headings && headings.length ? TocItem(headings) : [];
-console.log(edit);
-
---
@@ -23,19 +21,12 @@ console.log(edit);
\ No newline at end of file
diff --git a/src/layouts/Collections.astro b/src/layouts/Collections.astro
index d9f518a..7eefd78 100644
--- a/src/layouts/Collections.astro
+++ b/src/layouts/Collections.astro
@@ -35,6 +35,11 @@ const isActive = (href: string)=>{