diff --git a/examples/turing/pages/[...slug].jsx b/examples/turing/pages/[...slug].jsx
index e8bb71c6..8bf167eb 100644
--- a/examples/turing/pages/[...slug].jsx
+++ b/examples/turing/pages/[...slug].jsx
@@ -6,7 +6,6 @@ import { Card } from '../components/Card'
import Head from 'next/head'
import parse from '../lib/markdown'
import { Mermaid } from '@flowershow/core';
-import { Header } from '../components/Header';
export const getStaticProps = async ({ params }) => {
const urlPath = params.slug ? params.slug.join('/') : ''
@@ -82,15 +81,13 @@ export default function DRDPage({ mdxSource }) {
)
return (
<>
-