Skip to content

Commit

Permalink
Merge pull request #12 from rarimo/feature/new-landing
Browse files Browse the repository at this point in the history
New landing page
  • Loading branch information
ardier16 authored May 31, 2024
2 parents 1b9b414 + 9b8006f commit a1c21c9
Show file tree
Hide file tree
Showing 203 changed files with 10,220 additions and 10,206 deletions.
4 changes: 4 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,7 @@ playground
index.html
*.md
static/env.js
.next/
node_modules/
coverage/
__snapshots__/
92 changes: 0 additions & 92 deletions .eslintrc.js

This file was deleted.

96 changes: 96 additions & 0 deletions .eslintrc.json
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"
}
}
76 changes: 64 additions & 12 deletions .gitignore
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
14 changes: 12 additions & 2 deletions .prettierrc
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"]
}
893 changes: 893 additions & 0 deletions .yarn/releases/yarn-4.1.1.cjs

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions .yarnrc.yml
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
37 changes: 37 additions & 0 deletions README.md
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.
Loading

0 comments on commit a1c21c9

Please sign in to comment.