Skip to content

Commit 184f869

Browse files
newone again
1 parent bccd0e2 commit 184f869

File tree

10 files changed

+100
-603
lines changed

10 files changed

+100
-603
lines changed

.bolt/config.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"template": "bolt-vite-react-ts"
3+
}

.bolt/prompt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
For all designs I ask you to make, have them be beautiful, not cookie cutter. Make webpages that are fully featured and worthy for production.
2+
3+
By default, this template supports JSX syntax with Tailwind CSS classes, React hooks, and Lucide React for icons. Do not install other packages for UI themes, icons, etc unless absolutely necessary or I request them.
4+
5+
Use icons from lucide-react for logos.
6+
7+
Use stock photos from unsplash where appropriate, only valid URLs you know exist. Do not download the images, only link to them in image tags.
8+

.env

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
VITE_API_URL=https://chat-io-v3p1.onrender.com
2+
VITE_AUTH0_DOMAIN=dev-dx27jbe3mbi703a0.us.auth0.com
3+
VITE_AUTH0_CLIENT_ID=gu0WE2XDEWRAJ3lSzKRjxsj6Uw41coNR

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,3 @@ dist-ssr
2222
*.njsproj
2323
*.sln
2424
*.sw?
25-
*.env

index.html

Lines changed: 11 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,13 @@
11
<!doctype html>
22
<html lang="en">
3-
4-
<head>
5-
<meta charset="UTF-8">
6-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7-
<title>Online AI Code Editor | Codekori</title>
8-
<meta name="google-site-verification" content="awzIlCvmcfmInAfL5Y7mwoKBQr3NqHx0431qWKPddZs" />
9-
<meta name="description"
10-
content="Codekori offers an advanced online AI code editor to streamline your coding experience with intelligent suggestions and real-time collaboration.">
11-
<meta name="keywords"
12-
content="AI code editor, online code editor, real-time code collaboration, intelligent code suggestions">
13-
<meta name="author" content="Codekori Team">
14-
<link rel="icon" href="/logo.png" type="image/x-icon">
15-
<link rel="shortcut icon" href="./logo.png" type="image/x-icon">
16-
<link rel="canonical" href="https://www.codekori.com/">
17-
<meta property="og:title" content="Online AI Code Editor | Codekori">
18-
<meta property="og:description"
19-
content="Enhance your coding efficiency with Codekori's AI-powered online code editor featuring real-time collaboration and intelligent code suggestions.">
20-
<meta property="og:image" content="https://www.codekori.com/og-image.png">
21-
<meta property="og:url" content="https://www.codekori.com/">
22-
<meta property="og:type" content="website">
23-
<meta name="twitter:card" content="summary_large_image">
24-
<meta name="twitter:title" content="Online AI Code Editor | Codekori">
25-
<meta name="twitter:description"
26-
content="Streamline your development process with Codekori's AI-driven online code editor, offering intelligent suggestions and seamless collaboration.">
27-
<meta name="twitter:image" content="https://www.codekori.com/twitter-image.png">
28-
<meta name="robots" content="index, follow">
29-
<meta name="viewport" content="width=device-width, initial-scale=1">
30-
<link rel="stylesheet" href="styles.css">
31-
</head>
32-
33-
<body>
34-
<div id="root"></div>
35-
<script type="module" src="/src/main.tsx"></script>
36-
</body>
37-
38-
</html>
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Vite + React + TS</title>
8+
</head>
9+
<body>
10+
<div id="root"></div>
11+
<script type="module" src="/src/main.tsx"></script>
12+
</body>
13+
</html>

package-lock.json

Lines changed: 0 additions & 178 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,10 @@
1010
"preview": "vite preview"
1111
},
1212
"dependencies": {
13-
"@clerk/clerk-react": "^5.24.1",
1413
"lucide-react": "^0.344.0",
1514
"react": "^18.3.1",
1615
"react-dom": "^18.3.1",
1716
"react-markdown": "^9.0.1",
18-
"react-router-dom": "^7.2.0",
1917
"react-syntax-highlighter": "^15.5.0",
2018
"remark-gfm": "^4.0.0"
2119
},
@@ -36,4 +34,4 @@
3634
"typescript-eslint": "^8.3.0",
3735
"vite": "^5.4.2"
3836
}
39-
}
37+
}

0 commit comments

Comments
 (0)