Skip to content

Commit

Permalink
Update using lovable (#25)
Browse files Browse the repository at this point in the history
* Update using lovable

* rename file

* rename

* update

---------

Co-authored-by: fisher <hi@fisher.local>
  • Loading branch information
hackfisher and fisher authored Feb 6, 2025
1 parent da8f73d commit 816d08d
Show file tree
Hide file tree
Showing 28 changed files with 728 additions and 943 deletions.
Binary file added bun.lockb
Binary file not shown.
20 changes: 20 additions & 0 deletions components.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "default",
"rsc": false,
"tsx": true,
"tailwind": {
"config": "tailwind.config.ts",
"css": "src/index.css",
"baseColor": "slate",
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "@/components",
"utils": "@/lib/utils",
"ui": "@/components/ui",
"lib": "@/lib",
"hooks": "@/hooks"
}
}
29 changes: 29 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import js from "@eslint/js";
import globals from "globals";
import reactHooks from "eslint-plugin-react-hooks";
import reactRefresh from "eslint-plugin-react-refresh";
import tseslint from "typescript-eslint";

export default tseslint.config(
{ ignores: ["dist"] },
{
extends: [js.configs.recommended, ...tseslint.configs.recommended],
files: ["**/*.{ts,tsx}"],
languageOptions: {
ecmaVersion: 2020,
globals: globals.browser,
},
plugins: {
"react-hooks": reactHooks,
"react-refresh": reactRefresh,
},
rules: {
...reactHooks.configs.recommended.rules,
"react-refresh/only-export-components": [
"warn",
{ allowConstantExport: true },
],
"@typescript-eslint/no-unused-vars": "off",
},
}
);
7 changes: 5 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- favicon -->
<link
rel="icon"
type="image/png"
Expand Down Expand Up @@ -43,11 +42,15 @@
sizes="180x180"
href="favicon/favicon-180x180.png"
/>

<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>RingDAO</title>
<meta name="description" content="RingDAO - Venture DAO focusing on DeFi and DAO Applications" />
<meta name="author" content="RingDAO" />
</head>
<body>
<div id="app"></div>
<script src="https://cdn.gpteng.co/gptengineer.js" type="module"></script>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
</html>
Loading

0 comments on commit 816d08d

Please sign in to comment.