Skip to content

Commit 19514b0

Browse files
committed
Create tailwind-ssg example
1 parent 814e277 commit 19514b0

File tree

14 files changed

+225
-0
lines changed

14 files changed

+225
-0
lines changed

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: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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, "bg-white dark:bg-black dark:text-white"].join(" ")}>
19+
<Core t="background .3s" dp />
20+
{children}
21+
</body>
22+
</html>
23+
);
24+
}

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.
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+
};

examples/tailwind-ssg/package.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"name": "@example/tailwind-ssg",
3+
"version": "0.0.0",
4+
"private": true,
5+
"scripts": {
6+
"build": "next build",
7+
"clean": "rm -rf .next",
8+
"dev": "next dev -p 3002",
9+
"lint": "next lint",
10+
"typecheck": "tsc --noEmit",
11+
"start": "next start",
12+
"postinstall": "next telemetry disable"
13+
},
14+
"dependencies": {
15+
"@mayank1513/fork-me": "^2.1.2",
16+
"@repo/logger": "workspace:*",
17+
"@repo/shared": "workspace:*",
18+
"next": "^14.2.4",
19+
"nextjs-darkmode": "workspace:*",
20+
"nextjs-themes": "^3.1.2",
21+
"react": "^18.3.1",
22+
"react-dom": "^18.3.1",
23+
"react18-loaders": "^1.1.1"
24+
},
25+
"devDependencies": {
26+
"@next/eslint-plugin-next": "^14.2.4",
27+
"@repo/eslint-config": "workspace:*",
28+
"@repo/typescript-config": "workspace:*",
29+
"@types/node": "^20.14.2",
30+
"@types/react": "^18.3.3",
31+
"@types/react-dom": "^18.3.0",
32+
"autoprefixer": "^10.4.19",
33+
"postcss": "^8.4.38",
34+
"tailwindcss": "^3.4.4",
35+
"typescript": "^5.4.5"
36+
}
37+
}

0 commit comments

Comments
 (0)