Skip to content

Commit

Permalink
Update using lovable
Browse files Browse the repository at this point in the history
  • Loading branch information
fisher committed Feb 6, 2025
1 parent da8f73d commit eb0c94f
Show file tree
Hide file tree
Showing 20 changed files with 625 additions and 954 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",
},
}
);
40 changes: 4 additions & 36 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,52 +2,20 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- favicon -->
<link
rel="icon"
type="image/png"
sizes="32x32"
href="favicon/favicon-32x32.png"
/>

<!-- For Android and Chrome -->
<link
rel="icon"
type="image/png"
sizes="48x48"
href="favicon/favicon-48x48.png"
/>
<link
rel="icon"
type="image/png"
sizes="96x96"
href="favicon/favicon-96x96.png"
/>
<link
rel="icon"
type="image/png"
sizes="192x192"
href="favicon/favicon-192x192.png"
/>

<!-- For iPads and iPhones -->
<link
rel="apple-touch-icon"
type="image/png"
sizes="167x167"
href="favicon/favicon-167x167.png"
/>
<link
rel="apple-touch-icon"
type="image/png"
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 - Empowering Chains to Communicate" />
<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 eb0c94f

Please sign in to comment.