Skip to content

Commit

Permalink
Pushed Pre-Alpha version
Browse files Browse the repository at this point in the history
  • Loading branch information
devsujay19 committed May 29, 2024
0 parents commit 9ed12d0
Show file tree
Hide file tree
Showing 60 changed files with 15,106 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<p align="center">
<img src="client/public/assets/logo/logo-dark.png" width="45" style="margin-bottom: -25px" />
</p>

<h1 align="center">Quark</h1>

A Fast, Reliable and Decentralized Blockchain-based Exchangeable Token for the Web 3.0 Infrastructure.

> [!TIP]
> Help us improve Quark more and earn Qs as reward from us!
<span style="font-size: 10px">From <i>https://quark-token.vercel.app</i></span>.
3 changes: 3 additions & 0 deletions client/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "next/core-web-vitals"
}
38 changes: 38 additions & 0 deletions client/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js
.yarn/install-state.gz

# 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

certificates
12 changes: 12 additions & 0 deletions client/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<p align="center">
<img src="public/assets/logo/logo-dark.png" width="45" style="margin-bottom: -25px" />
</p>

<h1 align="center">Quark</h1>

A Fast, Reliable and Decentralized Blockchain-based Exchangeable Token for the Web 3.0 Infrastructure.

> [!TIP]
> Help us improve Quark more and earn Qs as reward from us!
<span style="font-size: 10px">From <i>https://quark-token.vercel.app</i></span>.
15 changes: 15 additions & 0 deletions client/next.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: "ui.aceternity.com",
port: '',
pathname: '/_next/**',
},
],
},
};

export default nextConfig;
Loading

0 comments on commit 9ed12d0

Please sign in to comment.