diff --git a/pages/blog/[...post].tsx b/pages/blog/[...post].tsx
index 3f89bcd..0f5f322 100644
--- a/pages/blog/[...post].tsx
+++ b/pages/blog/[...post].tsx
@@ -1,4 +1,4 @@
-import LayoutBlog from '@/components/layouts/layout-blog';
+import LayoutBlog from '@/components/layouts/LayoutBlog';
import Link from 'next/link';
const BlogPostPage = ({post}) => {
diff --git a/pages/blog/hello-eden.mdx b/pages/blog/hello-eden.mdx
index 099b119..fcb3140 100644
--- a/pages/blog/hello-eden.mdx
+++ b/pages/blog/hello-eden.mdx
@@ -1,14 +1,28 @@
-import MdxLayout from '@/components/layouts/layout-blog'
+import LayoutBlog from '../../src/components/layouts/LayoutBlog';
+
+[//]: # (MARKDOWN CONTENT - START)
-[//]: # (This is a comment. All of this is markdown)
# Welcome to my MDX page!
Bla **Bli** blub [Create stuff with Eden.Art](https://app.eden.art/)
+asdasdasdas
+d
+as
+da
+sd
+asd
+
+asd
+as
+ds
+
+[//]: # (MARKDOWN CONTENT - END)
+
export default function MDXPage({ children }) {
return (
-
+
{children}
-
+
)
}
\ No newline at end of file
diff --git a/pages/blog/index.tsx b/pages/blog/index.tsx
index 059b558..5df3674 100644
--- a/pages/blog/index.tsx
+++ b/pages/blog/index.tsx
@@ -1,4 +1,4 @@
-import LayoutBlog from '@/components/layouts/layout-blog';
+import LayoutBlog from '@/components/layouts/LayoutBlog';
import BlogPostPreview from '@/components/BlogPostPreview';
export async function getStaticProps() {
@@ -37,7 +37,7 @@ const BlogIndexPage = ({posts}) => {
Posts
- {posts.map(post => ())}
+ {posts.map(post => ())}
diff --git a/src/components/EdenArtFrontPage/EdenArtFrontPage.tsx b/src/components/EdenArtFrontPage/EdenArtFrontPage.tsx
index 44aaef9..c9576b6 100644
--- a/src/components/EdenArtFrontPage/EdenArtFrontPage.tsx
+++ b/src/components/EdenArtFrontPage/EdenArtFrontPage.tsx
@@ -6,7 +6,9 @@ import VideoHeroSection from '@/components/VideoHeroSection';
export default function EdenArtFrontPage() {
return (
-
+
+
+
diff --git a/src/components/layouts/layout-blog.tsx b/src/components/layouts/LayoutBlog.tsx
similarity index 100%
rename from src/components/layouts/layout-blog.tsx
rename to src/components/layouts/LayoutBlog.tsx
diff --git a/src/components/navigation/NavHeader.tsx b/src/components/navigation/NavHeader.tsx
index 354950a..13cafaf 100644
--- a/src/components/navigation/NavHeader.tsx
+++ b/src/components/navigation/NavHeader.tsx
@@ -11,7 +11,7 @@ const NavHeader = () => {