Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 27 additions & 5 deletions frontend/public/index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@

TecX AI Website/
│── frontend/ # React.js / Next.js frontend
│ ├── public/ # Static assets (e.g., images, favicon, static HTML files)
│ │ ├── index.html # Static fallback homepage (for non-Next.js builds)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TecX AI</title>
<link rel="stylesheet" href="/styles/globals.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about">About</a></li>
<li><a href="/contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<h1>Welcome to TecX AI</h1>
<p>Experience the power of AI and Web3 integration.</p>
</main>
<footer>
<p>&copy; 2025 AI Web3 Website. All rights reserved.</p>
</footer>
</body>
</html>