diff --git a/app/(home)/icons.tsx b/app/(home)/icons.tsx deleted file mode 100644 index 07ee9030..00000000 --- a/app/(home)/icons.tsx +++ /dev/null @@ -1,455 +0,0 @@ -import type { SVGProps } from 'react'; - -export function NextSVG(props: SVGProps): React.ReactElement { - return ( - - - - - - - - - - - - - - - - - - - - - ); -} - -export function SourceSVG(props: SVGProps): React.ReactElement { - return ( - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ); -} - -export function VercelLogo(props: SVGProps): React.ReactElement { - return ( - - - - ); -} - -export function NetlifyLogo( - props: SVGProps, -): React.ReactElement { - return ( - - - - - - - - - - - - - - - - - - ); -} - -export function ContentlayerIcon( - props: SVGProps, -): React.ReactElement { - return ( - - - - ); -} - -export function OpenAPIIcon( - props: SVGProps, -): React.ReactElement { - return ( - - - - ); -} - -export function EarthIcon(props: SVGProps): React.ReactElement { - return ( - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ); -} diff --git a/app/(home)/layout.tsx b/app/(home)/layout.tsx deleted file mode 100644 index a15489ac..00000000 --- a/app/(home)/layout.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import { Layout } from 'fumadocs-ui/layout'; -import type { ReactNode } from 'react'; -import { Footer } from '@/components/footer'; -import { baseOptions } from '@/app/layout.config'; - -export default function HomeLayout({ - children, -}: { - children: ReactNode; -}): React.ReactElement { - return - {children} -