Skip to content

Commit 3f38206

Browse files
authored
Merge pull request #10 from react18-tools/feat/dont-sync
Feat/dont sync
2 parents 36da2f8 + 9fffbf5 commit 3f38206

File tree

25 files changed

+317
-20
lines changed

25 files changed

+317
-20
lines changed

.changeset/config.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
{
22
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
33
"changelog": "@changesets/cli/changelog",
4-
"commit": false,
4+
"commit": true,
55
"fixed": [],
66
"linked": [],
7-
"access": "restricted",
87
"baseBranch": "main",
9-
"updateInternalDependencies": "patch",
108
"ignore": ["@example/*"]
119
}

.tkb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123
},
124124
"W_uPAM5Vm86aJ8yEEMKHh": {
125125
"id": "W_uPAM5Vm86aJ8yEEMKHh",
126-
"description": "Update examples\n- Add example for tailwind",
126+
"description": "Update examples\n- Add example for mui",
127127
"columnId": "column-todo"
128128
},
129129
"zE0aqgk59cyZ95s5TkECd": {

examples/tailwind-ssg/.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+
}
1.12 KB
Binary file not shown.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
@tailwind base;
2+
@tailwind components;
3+
@tailwind utilities;
4+
5+
@import "nextjs-darkmode/css";
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import type { Metadata } from "next";
2+
import { Inter } from "next/font/google";
3+
import "./globals.css";
4+
import { Core } from "nextjs-darkmode";
5+
6+
const inter = Inter({ subsets: ["latin"] });
7+
8+
export const metadata: Metadata = {
9+
title: "Tailwind CSS Example",
10+
description: "Generated by Mayank <https://github.com/mayank1513>",
11+
};
12+
13+
/** Root layout */
14+
export default function RootLayout({ children }: { children: React.ReactNode }) {
15+
return (
16+
<html lang="en">
17+
<body className={[inter.className, "bg-white dark:bg-black dark:text-white"].join(" ")}>
18+
<Core t="background .3s" dp />
19+
{children}
20+
</body>
21+
</html>
22+
);
23+
}

examples/tailwind-ssg/app/page.tsx

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
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://mayank-chaudhari.vercel.app"
18+
target="_blank"
19+
rel="noopener noreferrer">
20+
By Mayank
21+
</a>
22+
</div>
23+
</div>
24+
25+
<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]" />
26+
27+
<Switch />
28+
29+
<div className="mb-32 grid text-center lg:max-w-5xl lg:w-full lg:mb-0 lg:grid-cols-4 lg:text-left">
30+
<Card
31+
href="https://react18-tools.github.io/nextjs-darkmode/"
32+
title="Docs"
33+
text="Find in-depth information about nextjs-darkmode features and API."
34+
/>
35+
<Card
36+
href="https://github.com/react18-tools/nextjs-darkmode"
37+
title="Examples"
38+
text="Learn through more examples on official GitHub repo."
39+
/>
40+
<StarMe
41+
gitHubUrl="https://github.com/react18-tools/nextjs-darkmode"
42+
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">
43+
<h2 className={"mb-3 text-2xl font-semibold"}>
44+
Star Me{" "}
45+
<span className="inline-block transition-transform group-hover:translate-x-1 motion-reduce:transform-none">
46+
-&gt;
47+
</span>
48+
</h2>
49+
<p className={"m-0 max-w-[30ch] text-sm opacity-50"}>
50+
Explore and star official <code>nextjs-darkmode</code> repo.
51+
</p>
52+
</StarMe>
53+
<Card
54+
href="https://vercel.com/new?utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app"
55+
title="Deploy"
56+
text="Instantly deploy your Next.js site to a shareable URL with Vercel."
57+
/>
58+
</div>
59+
</main>
60+
);
61+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"telemetry": {
3+
"notifiedAt": "1717946618192",
4+
"enabled": false
5+
}
6+
}
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.

0 commit comments

Comments
 (0)