diff --git a/themes/blank/index.js b/themes/blank/index.js deleted file mode 100644 index 39b402b0..00000000 --- a/themes/blank/index.js +++ /dev/null @@ -1,438 +0,0 @@ -/* eslint-disable */ - -/** - * 这是一个空白主题,方便您用作创建新主题时的模板,从而开发出您自己喜欢的主题 - * 1. 禁用了代码质量检查功能,提高了代码的宽容度;您可以使用标准的html写法 - * 2. 内容大部分是在此文件中写死,notion数据从props参数中传进来 - * 3. 您可在此网站找到更多喜欢的组件 https://www.tailwind-kit.com/ - */ -import BLOG from '@/blog.config' -import DarkModeButton from '@/components/DarkModeButton' -import NotionPage from '@/components/NotionPage' -import Link from 'next/link' -import { useState } from 'react' - -/** - * 这是个配置文件,可以方便在此统一配置信息 - */ -const THEME_CONFIG = { THEME: 'blank' } - -/** - * 布局框架 - * 作为一个基础框架使用,定义了整个主题每个页面必备的顶部导航栏和页脚 - * 其它页面都嵌入到此框架中使用 - * @param {*} props - * @returns - */ -const LayoutBase = (props) => { - const { siteInfo, children } = props - return
- Lastest articles -
-- All article are verified by 2 experts and valdiate by the CTO -
-- {post.category} -
-- {post.title} -
-- {post.description} -
-