You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NovaForge is a **free, open-source, AI-powered cloud IDE** and autonomous coding agent. Write, run, and preview code in **8+ languages** directly in your browser — no signup required. Powered by free AI providers (Gemini, OpenRouter, Ollama).
7
+
CodeAbyss is a **free, open-source, AI-powered cloud IDE** and autonomous coding agent. Write, run, and preview code in **8+ languages** directly in your browser — no signup required. Powered by free AI providers (Gemini, OpenRouter, Ollama).
8
8
9
9
## Features
10
10
@@ -46,7 +46,7 @@ NovaForge is a **free, open-source, AI-powered cloud IDE** and autonomous coding
46
46
## Quick Start
47
47
48
48
```powershell
49
-
cd "$env:USERPROFILE\Desktop\NovaForge_Free_AI_IDE"
49
+
cd "$env:USERPROFILE\Desktop\CodeAbyss_Free_AI_IDE"
Copy file name to clipboardExpand all lines: apps/web/src/app/layout.tsx
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -2,29 +2,29 @@ import type { Metadata } from "next";
2
2
import"./globals.css";
3
3
4
4
exportconstmetadata: Metadata={
5
-
title: "NovaForge – Free AI Cloud IDE & Online Code Editor",
6
-
description: "NovaForge is a free, open-source AI-powered cloud IDE and online compiler. Write, run, and deploy code in 8+ languages with an autonomous AI coding agent. No signup required.",
title: "CodeAbyss – Free AI Cloud IDE & Online Code Editor",
6
+
description: "CodeAbyss is a free, open-source AI-powered cloud IDE and online compiler. Write, run, and deploy code in 8+ languages with an autonomous AI coding agent. No signup required.",
title: "NovaForge – Free AI Cloud IDE & Online Compiler",
10
+
title: "CodeAbyss – Free AI Cloud IDE & Online Compiler",
11
11
description: "Free AI-powered cloud IDE. Write, run & deploy code in 8+ languages with an autonomous coding agent. Python, JavaScript, TypeScript, Java, C++, Rust, HTML/CSS.",
12
-
url: "https://novaforge.dev",
13
-
siteName: "NovaForge",
12
+
url: "https://CodeAbyss.dev",
13
+
siteName: "CodeAbyss",
14
14
type: "website",
15
15
locale: "en_US",
16
16
},
17
17
twitter: {
18
18
card: "summary_large_image",
19
-
title: "NovaForge – Free AI Cloud IDE",
19
+
title: "CodeAbyss – Free AI Cloud IDE",
20
20
description: "Free AI-powered cloud IDE with autonomous coding agent. 8+ languages, zero setup.",
21
21
},
22
22
robots: {
23
23
index: true,
24
24
follow: true,
25
25
googleBot: {index: true,follow: true},
26
26
},
27
-
alternates: {canonical: "https://novaforge.dev"},
27
+
alternates: {canonical: "https://CodeAbyss.dev"},
28
28
};
29
29
30
30
exportdefaultfunctionRootLayout({
@@ -36,15 +36,15 @@ export default function RootLayout({
if(file.endsWith(".java"))return'public class Main {\n public static void main(String[] args) {\n System.out.println("Hello from NovaForge Java");\n }\n}\n';
701
-
if(file.endsWith(".rs"))return'fn main() {\n println!("Hello from NovaForge Rust");\n}\n';
702
-
if(file.endsWith(".html"))return"<!doctype html>\n<html><body><h1>Hello from NovaForge</h1></body></html>\n";
697
+
if(file.endsWith(".py"))return"print('Hello from CodeAbyss')\n";
698
+
if(file.endsWith(".c"))return'#include <stdio.h>\n\nint main(void) {\n printf("Hello from CodeAbyss C\\n");\n return 0;\n}\n';
if(file.endsWith(".java"))return'public class Main {\n public static void main(String[] args) {\n System.out.println("Hello from CodeAbyss Java");\n }\n}\n';
701
+
if(file.endsWith(".rs"))return'fn main() {\n println!("Hello from CodeAbyss Rust");\n}\n';
702
+
if(file.endsWith(".html"))return"<!doctype html>\n<html><body><h1>Hello from CodeAbyss</h1></body></html>\n";
0 commit comments