-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fe584dc
commit 489feed
Showing
35 changed files
with
1,174 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
.now/* | ||
*.css | ||
.changeset | ||
dist | ||
esm/* | ||
public/* | ||
tests/* | ||
scripts/* | ||
*.config.js | ||
.DS_Store | ||
node_modules | ||
coverage | ||
.next | ||
build | ||
!.commitlintrc.cjs | ||
!.lintstagedrc.cjs | ||
!jest.config.js | ||
!plopfile.js | ||
!react-shim.js | ||
!tsup.config.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
{ | ||
"$schema": "https://json.schemastore.org/eslintrc.json", | ||
"env": { | ||
"browser": false, | ||
"es2021": true, | ||
"node": true | ||
}, | ||
"extends": [ | ||
"plugin:react/recommended", | ||
"plugin:prettier/recommended", | ||
"plugin:react-hooks/recommended", | ||
"plugin:jsx-a11y/recommended" | ||
], | ||
"plugins": ["react", "unused-imports", "import", "@typescript-eslint", "jsx-a11y", "prettier"], | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"ecmaFeatures": { | ||
"jsx": true | ||
}, | ||
"ecmaVersion": 12, | ||
"sourceType": "module" | ||
}, | ||
"settings": { | ||
"react": { | ||
"version": "detect" | ||
} | ||
}, | ||
"rules": { | ||
"no-console": "warn", | ||
"react/prop-types": "off", | ||
"react/jsx-uses-react": "off", | ||
"react/react-in-jsx-scope": "off", | ||
"react-hooks/exhaustive-deps": "off", | ||
"jsx-a11y/click-events-have-key-events": "warn", | ||
"jsx-a11y/interactive-supports-focus": "warn", | ||
"prettier/prettier": "warn", | ||
"no-unused-vars": "off", | ||
"unused-imports/no-unused-vars": "off", | ||
"unused-imports/no-unused-imports": "warn", | ||
"@typescript-eslint/no-unused-vars": [ | ||
"warn", | ||
{ | ||
"args": "after-used", | ||
"ignoreRestSiblings": false, | ||
"argsIgnorePattern": "^_.*?$" | ||
} | ||
], | ||
"import/order": [ | ||
"warn", | ||
{ | ||
"groups": [ | ||
"type", | ||
"builtin", | ||
"object", | ||
"external", | ||
"internal", | ||
"parent", | ||
"sibling", | ||
"index" | ||
], | ||
"pathGroups": [ | ||
{ | ||
"pattern": "~/**", | ||
"group": "external", | ||
"position": "after" | ||
} | ||
], | ||
"newlines-between": "always" | ||
} | ||
], | ||
"react/self-closing-comp": "warn", | ||
"react/jsx-sort-props": [ | ||
"warn", | ||
{ | ||
"callbacksLast": true, | ||
"shorthandFirst": true, | ||
"noSortAlphabetically": false, | ||
"reservedFirst": true | ||
} | ||
], | ||
"padding-line-between-statements": [ | ||
"warn", | ||
{"blankLine": "always", "prev": "*", "next": "return"}, | ||
{"blankLine": "always", "prev": ["const", "let", "var"], "next": "*"}, | ||
{ | ||
"blankLine": "any", | ||
"prev": ["const", "let", "var"], | ||
"next": ["const", "let", "var"] | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
|
||
# testing | ||
/coverage | ||
|
||
# next.js | ||
/.next/ | ||
/out/ | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
*.pem | ||
|
||
# debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# local env files | ||
.env*.local | ||
|
||
# vercel | ||
.vercel | ||
|
||
# typescript | ||
*.tsbuildinfo | ||
next-env.d.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
package-lock=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"typescript.tsdk": "node_modules/typescript/lib" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# Next.js & NextUI Template | ||
|
||
This is a template for creating applications using Next.js 14 (app directory) and NextUI (v2). | ||
|
||
[Try it on CodeSandbox](https://githubbox.com/nextui-org/next-app-template) | ||
|
||
## Technologies Used | ||
|
||
- [Next.js 14](https://nextjs.org/docs/getting-started) | ||
- [NextUI v2](https://nextui.org/) | ||
- [Tailwind CSS](https://tailwindcss.com/) | ||
- [Tailwind Variants](https://tailwind-variants.org) | ||
- [TypeScript](https://www.typescriptlang.org/) | ||
- [Framer Motion](https://www.framer.com/motion/) | ||
- [next-themes](https://github.com/pacocoursey/next-themes) | ||
|
||
## How to Use | ||
|
||
### Use the template with create-next-app | ||
|
||
To create a new project based on this template using `create-next-app`, run the following command: | ||
|
||
```bash | ||
npx create-next-app -e https://github.com/nextui-org/next-app-template | ||
``` | ||
|
||
### Install dependencies | ||
|
||
You can use one of them `npm`, `yarn`, `pnpm`, `bun`, Example using `npm`: | ||
|
||
```bash | ||
npm install | ||
``` | ||
|
||
### Run the development server | ||
|
||
```bash | ||
npm run dev | ||
``` | ||
|
||
### Setup pnpm (optional) | ||
|
||
If you are using `pnpm`, you need to add the following code to your `.npmrc` file: | ||
|
||
```bash | ||
public-hoist-pattern[]=*@nextui-org/* | ||
``` | ||
|
||
After modifying the `.npmrc` file, you need to run `pnpm install` again to ensure that the dependencies are installed correctly. | ||
|
||
## License | ||
|
||
Licensed under the [MIT license](https://github.com/nextui-org/next-app-template/blob/main/LICENSE). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
export default function AboutLayout({ | ||
children, | ||
}: { | ||
children: React.ReactNode; | ||
}) { | ||
return ( | ||
<section className="flex flex-col items-center justify-center gap-4 py-8 md:py-10"> | ||
<div className="inline-block max-w-lg text-center justify-center"> | ||
{children} | ||
</div> | ||
</section> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { title } from "@/components/primitives"; | ||
|
||
export default function AboutPage() { | ||
return ( | ||
<div> | ||
<h1 className={title()}>About</h1> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
export default function BlogLayout({ | ||
children, | ||
}: { | ||
children: React.ReactNode; | ||
}) { | ||
return ( | ||
<section className="flex flex-col items-center justify-center gap-4 py-8 md:py-10"> | ||
<div className="inline-block max-w-lg text-center justify-center"> | ||
{children} | ||
</div> | ||
</section> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { title } from "@/components/primitives"; | ||
|
||
export default function BlogPage() { | ||
return ( | ||
<div> | ||
<h1 className={title()}>Blog</h1> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
export default function DocsLayout({ | ||
children, | ||
}: { | ||
children: React.ReactNode; | ||
}) { | ||
return ( | ||
<section className="flex flex-col items-center justify-center gap-4 py-8 md:py-10"> | ||
<div className="inline-block max-w-lg text-center justify-center"> | ||
{children} | ||
</div> | ||
</section> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { title } from "@/components/primitives"; | ||
|
||
export default function DocsPage() { | ||
return ( | ||
<div> | ||
<h1 className={title()}>Docs</h1> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
"use client"; | ||
|
||
import { useEffect } from "react"; | ||
|
||
export default function Error({ | ||
error, | ||
reset, | ||
}: { | ||
error: Error; | ||
reset: () => void; | ||
}) { | ||
useEffect(() => { | ||
// Log the error to an error reporting service | ||
/* eslint-disable no-console */ | ||
console.error(error); | ||
}, [error]); | ||
|
||
return ( | ||
<div> | ||
<h2>Something went wrong!</h2> | ||
<button | ||
onClick={ | ||
// Attempt to recover by trying to re-render the segment | ||
() => reset() | ||
} | ||
> | ||
Try again | ||
</button> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
import "@/styles/globals.css"; | ||
import { Metadata, Viewport } from "next"; | ||
import { Link } from "@nextui-org/link"; | ||
import clsx from "clsx"; | ||
|
||
import { Providers } from "./providers"; | ||
|
||
import { siteConfig } from "@/config/site"; | ||
import { fontSans } from "@/config/fonts"; | ||
import { Navbar } from "@/components/navbar"; | ||
|
||
export const metadata: Metadata = { | ||
title: { | ||
default: siteConfig.name, | ||
template: `%s - ${siteConfig.name}`, | ||
}, | ||
description: siteConfig.description, | ||
icons: { | ||
icon: "/favicon.ico", | ||
}, | ||
}; | ||
|
||
export const viewport: Viewport = { | ||
themeColor: [ | ||
{ media: "(prefers-color-scheme: light)", color: "white" }, | ||
{ media: "(prefers-color-scheme: dark)", color: "black" }, | ||
], | ||
}; | ||
|
||
export default function RootLayout({ | ||
children, | ||
}: { | ||
children: React.ReactNode; | ||
}) { | ||
return ( | ||
<html suppressHydrationWarning lang="en"> | ||
<head /> | ||
<body | ||
className={clsx( | ||
"min-h-screen bg-background font-sans antialiased", | ||
fontSans.variable, | ||
)} | ||
> | ||
<Providers themeProps={{ attribute: "class", defaultTheme: "dark" }}> | ||
<div className="relative flex flex-col h-screen"> | ||
<Navbar /> | ||
<main className="container mx-auto max-w-7xl pt-16 px-6 flex-grow"> | ||
{children} | ||
</main> | ||
<footer className="w-full flex items-center justify-center py-3"> | ||
<Link | ||
isExternal | ||
className="flex items-center gap-1 text-current" | ||
href="https://nextui-docs-v2.vercel.app?utm_source=next-app-template" | ||
title="nextui.org homepage" | ||
> | ||
<span className="text-default-600">Powered by</span> | ||
<p className="text-primary">NextUI</p> | ||
</Link> | ||
</footer> | ||
</div> | ||
</Providers> | ||
</body> | ||
</html> | ||
); | ||
} |
Oops, something went wrong.