-
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.
Merge pull request #12 from rarimo/feature/new-landing
New landing page
- Loading branch information
Showing
203 changed files
with
10,220 additions
and
10,206 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 |
---|---|---|
|
@@ -6,3 +6,7 @@ playground | |
index.html | ||
*.md | ||
static/env.js | ||
.next/ | ||
node_modules/ | ||
coverage/ | ||
__snapshots__/ |
This file was deleted.
Oops, something went wrong.
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,96 @@ | ||
{ | ||
"root": true, | ||
"env": { | ||
"es2021": true, | ||
"node": true | ||
}, | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:import/recommended", | ||
"plugin:jsx-a11y/recommended", | ||
"plugin:react/recommended", | ||
"plugin:react/jsx-runtime", | ||
"prettier", | ||
"next/core-web-vitals" | ||
], | ||
"overrides": [ | ||
{ | ||
"files": ["**/*.ts?(x)"], | ||
"parser": "@typescript-eslint/parser", | ||
"extends": [ | ||
"plugin:@typescript-eslint/recommended", | ||
"plugin:import/typescript" | ||
] | ||
} | ||
], | ||
"plugins": ["simple-import-sort", "prettier", "@typescript-eslint"], | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"tsconfigRootDir": ".", | ||
"ecmaVersion": "latest", | ||
"sourceType": "module", | ||
"ecmaFeatures": { | ||
"jsx": true | ||
} | ||
}, | ||
"settings": { | ||
"import/parsers": { | ||
"@typescript-eslint/parser": [".ts", ".tsx"] | ||
}, | ||
"import/resolver": { | ||
"typescript": {}, | ||
"node": { | ||
"paths": ["src"], | ||
"extensions": [".js", ".jsx", ".ts", ".tsx"] | ||
} | ||
}, | ||
"react": { | ||
"version": "detect" | ||
} | ||
}, | ||
"globals": { | ||
"defineProps": "readonly", | ||
"defineEmits": "readonly", | ||
"defineExpose": "readonly", | ||
"withDefaults": "readonly" | ||
}, | ||
"rules": { | ||
"prettier/prettier": ["error", {}, { "usePrettierrc": true }], | ||
"arrow-parens": 0, | ||
"no-debugger": 1, | ||
"no-warning-comments": [ | ||
1, | ||
{ | ||
"terms": ["hardcoded"], | ||
"location": "anywhere" | ||
} | ||
], | ||
"no-return-await": 0, | ||
"object-curly-spacing": ["error", "always"], | ||
"simple-import-sort/imports": "error", | ||
"simple-import-sort/exports": "error", | ||
"no-var": "error", | ||
"comma-dangle": [1, "always-multiline"], | ||
"linebreak-style": ["error", "unix"], | ||
"@typescript-eslint/no-non-null-assertion": "off", | ||
"max-len": [ | ||
1, | ||
{ | ||
"code": 80, | ||
"comments": 80, | ||
"ignoreUrls": true, | ||
"ignoreStrings": true, | ||
"ignoreTemplateLiterals": true, | ||
"ignoreRegExpLiterals": true | ||
} | ||
], | ||
"no-console": [ | ||
1, | ||
{ | ||
"allow": ["warn", "error"] | ||
} | ||
], | ||
"react/display-name": "off", | ||
"@next/next/no-img-element": "off" | ||
} | ||
} |
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 |
---|---|---|
@@ -1,24 +1,76 @@ | ||
# Logs | ||
logs | ||
*.log | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
.yarn/install-state.gz | ||
.pnp.* | ||
.yarn/* | ||
!.yarn/patches | ||
!.yarn/plugins | ||
!.yarn/releases | ||
!.yarn/sdks | ||
!.yarn/versions | ||
package-lock.json | ||
|
||
# testing | ||
/coverage | ||
|
||
# next.js | ||
/.next/ | ||
/out/ | ||
|
||
# production | ||
/build | ||
dist/ | ||
|
||
# misc | ||
.DS_Store | ||
*.pem | ||
|
||
# debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
pnpm-debug.log* | ||
lerna-debug.log* | ||
selenium-debug.log | ||
stats.html | ||
|
||
# local env files | ||
.env*.local | ||
|
||
node_modules | ||
dist | ||
dist-ssr | ||
*.local | ||
# vercel | ||
.vercel | ||
|
||
# Editor directories and files | ||
# typescript | ||
*.tsbuildinfo | ||
next-env.d.ts | ||
|
||
# tests | ||
test/unit/coverage | ||
|
||
# linters | ||
.eslintcache | ||
|
||
# editor directories and files | ||
.vscode/* | ||
!.vscode/extensions.json | ||
!.vscode/settings.json | ||
.idea | ||
.DS_Store | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw? | ||
.vscode | ||
|
||
# env files | ||
.env.analyze | ||
.env.development | ||
.env.production | ||
.env.local | ||
|
||
# Sentry Auth Token | ||
.env.sentry-build-plugin | ||
|
||
# Local Netlify folder | ||
.netlify |
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 |
---|---|---|
@@ -1,7 +1,17 @@ | ||
{ | ||
"printWidth": 100, | ||
"tabWidth": 2, | ||
"semi": false, | ||
"singleQuote": true, | ||
"useTabs": false, | ||
"bracketSpacing": true, | ||
"bracketSameLine": false, | ||
"arrowParens": "avoid", | ||
"endOfLine": "auto", | ||
"trailingComma": "all", | ||
"printWidth": 80, | ||
"quoteProps": "as-needed", | ||
"embeddedLanguageFormatting": "auto", | ||
"htmlWhitespaceSensitivity": "css", | ||
"jsxSingleQuote": true, | ||
"arrowParens": "avoid" | ||
"plugins": ["prettier-plugin-tailwindcss"] | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
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 @@ | ||
yarnPath: .yarn/releases/yarn-4.1.1.cjs | ||
|
||
nodeLinker: node-modules |
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 |
---|---|---|
@@ -1 +1,38 @@ | ||
# RariMe Landing | ||
|
||
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). | ||
|
||
## Getting Started | ||
|
||
First, run the development server: | ||
|
||
```bash | ||
npm run dev | ||
# or | ||
yarn dev | ||
# or | ||
pnpm dev | ||
# or | ||
bun dev | ||
``` | ||
|
||
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. | ||
|
||
You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file. | ||
|
||
This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. | ||
|
||
## Learn More | ||
|
||
To learn more about Next.js, take a look at the following resources: | ||
|
||
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. | ||
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. | ||
|
||
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! | ||
|
||
## Deploy on Vercel | ||
|
||
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. | ||
|
||
Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. |
Oops, something went wrong.