/* eslint-disable react/no-unescaped-entities */ /* eslint-disable @next/next/no-img-element */ 'use client' /** * 这是一个空白主题,方便您用作创建新主题时的模板,从而开发出您自己喜欢的主题 * 1. 禁用了代码质量检查功能,提高了代码的宽容度;您可以使用标准的html写法 * 2. 内容大部分是在此文件中写死,notion数据从props参数中传进来 * 3. 您可在此网站找到更多喜欢的组件 https://www.tailwind-kit.com/ */ import Loading from '@/components/Loading' import NotionPage from '@/components/NotionPage' import { siteConfig } from '@/lib/config' import { isBrowser } from '@/lib/utils' import { useRouter } from 'next/router' import { useEffect } from 'react' import { About } from './components/About' import { BackToTopButton } from './components/BackToTopButton' import { Blog } from './components/Blog' import { Brand } from './components/Brand' import { Contact } from './components/Contact' import { FAQ } from './components/FAQ' import { Features } from './components/Features' import { Footer } from './components/Footer' import { Hero } from './components/Hero' import { NavBar } from './components/NavBar' import { Pricing } from './components/Pricing' import { Team } from './components/Team' import { Testimonials } from './components/Testimonials' import CONFIG from './config' import { Style } from './style' // import { MadeWithButton } from './components/MadeWithButton' import BLOG from '@/blog.config' import { loadWowJS } from '@/lib/plugins/wow' import Link from 'next/link' import { Banner } from './components/Banner' import { SignInForm } from './components/SignInForm' import { SignUpForm } from './components/SignUpForm' import { SVG404 } from './components/svg/SVG404' /** * 布局框架 * Landing-2 主题用作产品落地页展示 * 结合Stripe或者lemonsqueezy插件可以成为saas支付订阅 * https://play-tailwind.tailgrids.com/ * @param {*} props * @returns */ const LayoutBase = props => { const { children } = props // 加载wow动画 useEffect(() => { loadWowJS() }, []) return (