Skip to content

Commit

Permalink
Merge pull request #2
Browse files Browse the repository at this point in the history
Add web site based on the ocean template
  • Loading branch information
lilac authored Feb 28, 2024
2 parents 9d8076d + 7cd58b7 commit 124f33b
Show file tree
Hide file tree
Showing 52 changed files with 5,410 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "next/core-web-vitals"
}
35 changes: 35 additions & 0 deletions .gitignore
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div align="center">
<img src="asset/logo.svg" height="120">
<img src="public/logo.svg" height="120">
<h1>Chat Bar</h1>
<h3>ChatGPT in the menu Bar</h3>

Expand All @@ -8,7 +8,7 @@
[![Window x64](https://img.shields.io/badge/-Windows%20%E2%86%92-blue?style=flat-square&logo=windows&logoColor=white)](https://github.com/rabrain/chat-bar-docs/releases)
[![Linux](https://img.shields.io/badge/-Linux%20%E2%86%92-yellow?style=flat-square&logo=linux&logoColor=white)](https://github.com/rabrain/chat-bar-docs/releases)

<img src="asset/screenshot.png" width="80%" alt="Screenshot">
<img src="public/screenshot.png" width="80%" alt="Screenshot">
</div>

<br />
Expand Down
4 changes: 4 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/** @type {import('next').NextConfig} */
const nextConfig = {}

module.exports = nextConfig
Loading

0 comments on commit 124f33b

Please sign in to comment.