Your Nodes, Your Way
Orca empowers you to plan and execute with agility.
Its truly Decentralized system keeps you in the driver's seat. Stay organized, accelerate your work
API Support
Universal API Connectivity
Dive into a world of possibilities with Orca's extensive API support. Our platform adapts to you, making every connection count and every transition seamless
React
HTML
CSS
JS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Extended React example
import React, { useState } from 'react';
import './App.css';
function WelcomeMessage({ user }) {
return <p>Welcome, {user}! This is a React website.</p>;
}
function App() {
const [user, setUser] = useState("Guest");
return (
<div>
<header>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<h1>Extended React Website</h1>
</header>
<main>
<section id="home">
<h2>Home</h2>
<WelcomeMessage user={user} />
</section>
<section id="about">
<h2>About Us</h2>
<p>We are a team passionate about creating awesome web experiences.</p>
</section>
<section id="contact">
<h2>Contact Us</h2>
<p>Feel free to reach out to us via email or phone.</p>
</section>
</main>
<footer>
<p>© {new Date().getFullYear()} Extended React Website. All rights reserved.</p>
</footer>
</div>
);
}
export default App;