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, 24 insertions, 0 deletions
diff --git a/examples/kitchen-sink/apps/storefront/src/pages/index.tsx b/examples/kitchen-sink/apps/storefront/src/pages/index.tsx
new file mode 100644
index 0000000..7adef55
--- /dev/null
+++ b/examples/kitchen-sink/apps/storefront/src/pages/index.tsx
@@ -0,0 +1,24 @@
+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>
+ );
+}