diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b42ef682..d842d8e5 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -52,10 +52,6 @@ jobs: - name: Build project run: pnpm build - - - name: Generate sitemap - run: | - pnpm run generate-sitemap - name: Add CNAME run: | diff --git a/app/(home)/icons.tsx b/app/(home)/icons.tsx deleted file mode 100644 index 535e9482..00000000 --- a/app/(home)/icons.tsx +++ /dev/null @@ -1,303 +0,0 @@ -import type { SVGProps } from 'react'; - -export function NextSVG(props: SVGProps): React.ReactElement { - return ( - - - - - - - - - - - - - - - - - - - - - ); -} - -export function VercelLogo(props: SVGProps): React.ReactElement { - return ( - - - - ); -} - -export function NetlifyLogo( - props: SVGProps, -): React.ReactElement { - return ( - - - - - - - - - - - - - - - - - - ); -} - -export function OpenAPIIcon( - props: SVGProps, -): React.ReactElement { - return ( - - - - ); -} - -export function EarthIcon(props: SVGProps): React.ReactElement { - return ( - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ); -} \ No newline at end of file diff --git a/app/(home)/layout.tsx b/app/(home)/layout.tsx deleted file mode 100644 index 716aa98d..00000000 --- a/app/(home)/layout.tsx +++ /dev/null @@ -1,44 +0,0 @@ -import type { ReactNode } from 'react'; -import { HomeLayout } from 'fumadocs-ui/layouts/home'; -import { baseOptions } from '@/app/layout.config'; - -export default function Layout({ - children, -}: { - children: ReactNode; -}): React.ReactElement { - return ( - - {children} -