Skip to content

Commit 2fc6de4

Browse files
authored
Merge pull request #4 from react18-tools/fix/localStorage-not-defined
Fix/localStorage-not-defined
2 parents 102a783 + 9605fe4 commit 2fc6de4

File tree

22 files changed

+452
-12
lines changed

22 files changed

+452
-12
lines changed

.tkb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,16 +129,15 @@
129129
"zE0aqgk59cyZ95s5TkECd": {
130130
"id": "zE0aqgk59cyZ95s5TkECd",
131131
"description": "Update doc comments",
132-
"columnId": "column-todo"
132+
"columnId": "column-done"
133133
}
134134
},
135135
"columns": [
136136
{
137137
"id": "column-todo",
138138
"title": "To do",
139139
"tasksIds": [
140-
"W_uPAM5Vm86aJ8yEEMKHh",
141-
"zE0aqgk59cyZ95s5TkECd"
140+
"W_uPAM5Vm86aJ8yEEMKHh"
142141
]
143142
},
144143
{
@@ -150,6 +149,7 @@
150149
"id": "column-done",
151150
"title": "Done",
152151
"tasksIds": [
152+
"zE0aqgk59cyZ95s5TkECd",
153153
"O1qAByMoxhHOR-a_guL91",
154154
"FDFqCQvLm2mUlnTJ3Gna5",
155155
"RX4J5v4y5IOe_ucf8pMRT",

examples/nextjs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"scripts": {
66
"build": "next build",
77
"clean": "rm -rf .next",
8-
"dev": "next dev -p 3002",
8+
"dev": "next dev -p 3000",
99
"lint": "next lint",
1010
"typecheck": "tsc --noEmit",
1111
"start": "next start",
@@ -30,4 +30,4 @@
3030
"@types/react-dom": "^18.3.0",
3131
"typescript": "^5.4.5"
3232
}
33-
}
33+
}

examples/tailwind/.eslintrc.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/** @type {import("eslint").Linter.Config} */
2+
module.exports = {
3+
extends: ["@repo/eslint-config/next.js"],
4+
parser: "@typescript-eslint/parser",
5+
parserOptions: {
6+
project: true,
7+
},
8+
};
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
interface CardProps {
2+
href: string;
3+
title: string;
4+
text: string;
5+
}
6+
7+
/** Card component */
8+
export default function Card({ href, title, text }: CardProps) {
9+
return (
10+
<a
11+
href={href}
12+
className="group rounded-lg border border-transparent px-5 py-4 transition-colors hover:border-gray-300 hover:bg-gray-100 hover:dark:border-neutral-700 hover:dark:bg-neutral-800/30"
13+
target="_blank"
14+
rel="noopener noreferrer">
15+
<h2 className={"mb-3 text-2xl font-semibold"}>
16+
{`${title} `}
17+
<span className="inline-block transition-transform group-hover:translate-x-1 motion-reduce:transform-none">
18+
-&gt;
19+
</span>
20+
</h2>
21+
<p className={"m-0 max-w-[30ch] text-sm opacity-50"}>{text}</p>
22+
</a>
23+
);
24+
}

examples/tailwind/app/favicon.ico

1.12 KB
Binary file not shown.

examples/tailwind/app/globals.css

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
@tailwind base;
2+
@tailwind components;
3+
@tailwind utilities;
4+
5+
@import "nextjs-darkmode/css";
6+
7+
:root {
8+
--foreground-rgb: 0, 0, 0;
9+
--background-start-rgb: 214, 219, 220;
10+
--background-end-rgb: 255, 255, 255;
11+
}
12+
13+
.dark,
14+
.cs-dark {
15+
--foreground-rgb: 255, 255, 255;
16+
--background-start-rgb: 0, 0, 0;
17+
--background-end-rgb: 0, 0, 0;
18+
}
19+
20+
body {
21+
color: rgb(var(--foreground-rgb));
22+
background: linear-gradient(to bottom, transparent, rgb(var(--background-end-rgb)))
23+
rgb(var(--background-start-rgb));
24+
}

examples/tailwind/app/layout.tsx

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import type { Metadata } from "next";
2+
import { Inter } from "next/font/google";
3+
import "./globals.css";
4+
import { Core } from "nextjs-darkmode";
5+
import { ServerTarget } from "nextjs-darkmode/server";
6+
7+
const inter = Inter({ subsets: ["latin"] });
8+
9+
export const metadata: Metadata = {
10+
title: "Tailwind CSS Example",
11+
description: "Generated by Mayank <https://github.com/mayank1513>",
12+
};
13+
14+
/** Root layout */
15+
export default function RootLayout({ children }: { children: React.ReactNode }) {
16+
return (
17+
<html lang="en">
18+
<body className={inter.className}>
19+
<Core t="background .3s" />
20+
<ServerTarget />
21+
{children}
22+
</body>
23+
</html>
24+
);
25+
}

examples/tailwind/app/page.tsx

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
import { StarMe } from "@mayank1513/fork-me";
2+
import { Switch } from "nextjs-darkmode/switch";
3+
import Card from "./_components/card";
4+
5+
// Home page
6+
export default function Home() {
7+
return (
8+
// skipcq: JS-0415
9+
<main className="flex min-h-screen flex-col items-center justify-between p-24">
10+
<div className="z-10 max-w-5xl w-full items-center justify-between font-mono text-sm lg:flex">
11+
<p className="fixed left-0 top-0 flex w-full justify-center border-b border-gray-300 bg-gradient-to-b from-zinc-200 pb-6 pt-8 backdrop-blur-2xl dark:border-neutral-800 dark:bg-zinc-800/30 dark:from-inherit lg:static lg:w-auto lg:rounded-xl lg:border lg:bg-gray-200 lg:p-4 lg:dark:bg-zinc-800/30">
12+
nextjs-darkmode Tailwind CSS example
13+
</p>
14+
<div className="fixed bottom-0 left-0 flex h-48 w-full items-end justify-center bg-gradient-to-t from-white via-white dark:from-black dark:via-black lg:static lg:h-auto lg:w-auto lg:bg-none">
15+
<a
16+
className="pointer-events-none flex place-items-center gap-2 p-8 lg:pointer-events-auto lg:p-0"
17+
href="https://vercel.com?utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app"
18+
target="_blank"
19+
rel="noopener noreferrer">
20+
<a href="https://mayank-chaudhari.vercel.app" rel="noopener noreferrer" target="_blank">
21+
By Mayank
22+
</a>
23+
</a>
24+
</div>
25+
</div>
26+
27+
<div className="relative flex place-items-center before:absolute before:h-[300px] before:w-[480px] before:-translate-x-1/2 before:rounded-full before:bg-gradient-radial before:from-white before:to-transparent before:blur-2xl before:content-[''] after:absolute after:-z-20 after:h-[180px] after:w-[240px] after:translate-x-1/3 after:bg-gradient-conic after:from-sky-200 after:via-blue-200 after:blur-2xl after:content-[''] before:dark:bg-gradient-to-br before:dark:from-transparent before:dark:to-blue-700 before:dark:opacity-10 after:dark:from-sky-900 after:dark:via-[#0141ff] after:dark:opacity-40 before:lg:h-[360px] z-[-1]" />
28+
29+
<Switch />
30+
31+
<div className="mb-32 grid text-center lg:max-w-5xl lg:w-full lg:mb-0 lg:grid-cols-4 lg:text-left">
32+
<Card
33+
href="https://react18-tools.github.io/nextjs-darkmode/"
34+
title="Docs"
35+
text="Find in-depth information about nextjs-darkmode features and API."
36+
/>
37+
<Card
38+
href="https://github.com/react18-tools/nextjs-darkmode"
39+
title="Examples"
40+
text="Learn through more examples on official GitHub repo."
41+
/>
42+
<StarMe
43+
gitHubUrl="https://github.com/react18-tools/nextjs-darkmode"
44+
className="group rounded-lg border border-transparent px-5 py-4 transition-colors hover:border-gray-300 hover:bg-gray-100 hover:dark:border-neutral-700 hover:dark:bg-neutral-800/30">
45+
<h2 className={"mb-3 text-2xl font-semibold"}>
46+
Star Me{" "}
47+
<span className="inline-block transition-transform group-hover:translate-x-1 motion-reduce:transform-none">
48+
-&gt;
49+
</span>
50+
</h2>
51+
<p className={"m-0 max-w-[30ch] text-sm opacity-50"}>
52+
Explore and star official <code>nextjs-darkmode</code> repo.
53+
</p>
54+
</StarMe>
55+
<Card
56+
href="https://vercel.com/new?utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app"
57+
title="Deploy"
58+
text="Instantly deploy your Next.js site to a shareable URL with Vercel."
59+
/>
60+
</div>
61+
</main>
62+
);
63+
}

examples/tailwind/next-env.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/// <reference types="next" />
2+
/// <reference types="next/image-types/global" />
3+
4+
// NOTE: This file should not be edited
5+
// see https://nextjs.org/docs/basic-features/typescript for more information.

examples/tailwind/next.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
reactStrictMode: true,
3+
};

0 commit comments

Comments
 (0)