aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/kitchen-sink/apps/storefront/src/pages/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'examples/kitchen-sink/apps/storefront/src/pages/index.tsx')
-rw-r--r--examples/kitchen-sink/apps/storefront/src/pages/index.tsx24
1 files changed, 0 insertions, 24 deletions
diff --git a/examples/kitchen-sink/apps/storefront/src/pages/index.tsx b/examples/kitchen-sink/apps/storefront/src/pages/index.tsx
deleted file mode 100644
index 7adef55..0000000
--- a/examples/kitchen-sink/apps/storefront/src/pages/index.tsx
+++ /dev/null
@@ -1,24 +0,0 @@
-import { log } from "logger";
-import Head from "next/head";
-import { CounterButton, NewTabLink } from "ui";
-
-export default function Store() {
- log("Hey! This is Home.");
- return (
- <div className="container">
- <Head>
- <title>Store | Kitchen Sink</title>
- </Head>
- <h1 className="title">
- Store <br />
- <span>Kitchen Sink</span>
- </h1>
- <CounterButton />
- <p className="description">
- Built With{" "}
- <NewTabLink href="https://turbo.build/repo">Turborepo</NewTabLink> +{" "}
- <NewTabLink href="https://nextjs.org/">Next.js</NewTabLink>
- </p>
- </div>
- );
-}