diff --git a/components/Alert.tsx b/components/Alert.tsx deleted file mode 100644 index f0a4380..0000000 --- a/components/Alert.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import { Container } from "./Container"; -// import { EXAMPLE_PATH } from "@/lib/constants"; -import cn from "classnames"; - -type Props = { - preview?: boolean; -}; - -export function Alert({ preview }: Props) { - return ( -
- -
- {preview ? ( - <> - This page is a preview.{" "} - - Click here - {" "} - to exit preview mode - - ) : ( - <> - The source code for this blog is available on GitHub - - )} -
-
-
- ); -} diff --git a/components/Avatar.tsx b/components/Avatar.tsx deleted file mode 100644 index 3979214..0000000 --- a/components/Avatar.tsx +++ /dev/null @@ -1,15 +0,0 @@ -// import Image from "next/image"; - -type Props = { - name: string; - picture: string; -}; - -export function Avatar({ name, picture }: Props) { - return ( -
- {name} -
{name}
-
- ); -} diff --git a/components/Container.tsx b/components/Container.tsx deleted file mode 100644 index a8bb15c..0000000 --- a/components/Container.tsx +++ /dev/null @@ -1,7 +0,0 @@ -type Props = { - children?: React.ReactNode; -}; - -export function Container({ children }: Props) { - return
{children}
; -} diff --git a/components/Header.tsx b/components/Header.tsx deleted file mode 100644 index 64d1401..0000000 --- a/components/Header.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import Link from "next/link"; - -export function Header() { - return ( -

- - Blog - -

- ); -} diff --git a/components/Intro.tsx b/components/Intro.tsx deleted file mode 100644 index bd12951..0000000 --- a/components/Intro.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import { CMS_NAME } from "lib/constants"; - -export function Intro() { - return ( -
-

- Blog -

-

- A statically generated blog example using{" "} - - Next.js - {" "} - and {CMS_NAME}. -

-
- ); -} diff --git a/components/alert.tsx b/components/alert.tsx deleted file mode 100644 index f0a4380..0000000 --- a/components/alert.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import { Container } from "./Container"; -// import { EXAMPLE_PATH } from "@/lib/constants"; -import cn from "classnames"; - -type Props = { - preview?: boolean; -}; - -export function Alert({ preview }: Props) { - return ( -
- -
- {preview ? ( - <> - This page is a preview.{" "} - - Click here - {" "} - to exit preview mode - - ) : ( - <> - The source code for this blog is available on GitHub - - )} -
-
-
- ); -} diff --git a/components/avatar.tsx b/components/avatar.tsx deleted file mode 100644 index 3979214..0000000 --- a/components/avatar.tsx +++ /dev/null @@ -1,15 +0,0 @@ -// import Image from "next/image"; - -type Props = { - name: string; - picture: string; -}; - -export function Avatar({ name, picture }: Props) { - return ( -
- {name} -
{name}
-
- ); -} diff --git a/components/container.tsx b/components/container.tsx deleted file mode 100644 index a8bb15c..0000000 --- a/components/container.tsx +++ /dev/null @@ -1,7 +0,0 @@ -type Props = { - children?: React.ReactNode; -}; - -export function Container({ children }: Props) { - return
{children}
; -} diff --git a/components/header.tsx b/components/header.tsx deleted file mode 100644 index 64d1401..0000000 --- a/components/header.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import Link from "next/link"; - -export function Header() { - return ( -

- - Blog - -

- ); -} diff --git a/components/intro.tsx b/components/intro.tsx deleted file mode 100644 index bd12951..0000000 --- a/components/intro.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import { CMS_NAME } from "lib/constants"; - -export function Intro() { - return ( -
-

- Blog -

-

- A statically generated blog example using{" "} - - Next.js - {" "} - and {CMS_NAME}. -

-
- ); -}