Skip to content

Commit

Permalink
Merge pull request #86 from mbret/develop
Browse files Browse the repository at this point in the history
release
  • Loading branch information
mbret authored Mar 10, 2024
2 parents 2734730 + fd04179 commit 17d52c3
Show file tree
Hide file tree
Showing 69 changed files with 6,896 additions and 362 deletions.
674 changes: 674 additions & 0 deletions LICENCE

Large diffs are not rendered by default.

1,191 changes: 1,170 additions & 21 deletions package-lock.json

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
],
"scripts": {
"start:web": "lerna run start --scope=@oboku/web",
"start:landing": "lerna run landing:start",
"start:landing": "lerna run dev --scope=@oboku/landing",
"start:api": "lerna run api:start",
"build": "lerna run build",
"build:web": "lerna run build --scope=@oboku/web",
"build:api": "lerna run build --scope=@oboku/api",
"build:landing": "lerna run landing:build",
"build:landing": "lerna run build --scope=@oboku/landing",
"test": "lerna run test",
"tsc": "lerna run tsc",
"format": "prettier -w . && lerna run format",
Expand Down Expand Up @@ -64,11 +64,14 @@
"@aws-sdk/client-s3": "^3.451.0",
"@aws-sdk/client-sqs": "^3.525.0",
"@aws-sdk/client-ssm": "^3.451.0",
"@emotion/cache": "^11.11.0",
"@mui/material-nextjs": "^5.15.11",
"@react-rxjs/core": "^0.10.7",
"@react-rxjs/utils": "^0.9.7",
"arg": "^5.0.2",
"react-markdown": "^9.0.1",
"reactjrx": "^1.74.1",
"remark-gfm": "^4.0.0",
"sharp": "^0.33.2"
}
}
3 changes: 3 additions & 0 deletions packages/landing/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "next/core-web-vitals"
}
17 changes: 0 additions & 17 deletions packages/landing/.github/workflows/mirror-repo.yml

This file was deleted.

22 changes: 17 additions & 5 deletions packages/landing/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,33 @@
/node_modules
/.pnp
.pnp.js
.yarn/install-state.gz

# testing
/coverage

# next.js
/.next/
/out/

# production
/build
/dist

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# local env files
.env*.local

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts
36 changes: 36 additions & 0 deletions packages/landing/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
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.
21 changes: 0 additions & 21 deletions packages/landing/index.html

This file was deleted.

4 changes: 4 additions & 0 deletions packages/landing/next.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};

export default nextConfig;
Loading

0 comments on commit 17d52c3

Please sign in to comment.