Skip to content

Commit 455d764

Browse files
committed
adding file
1 parent 23b9106 commit 455d764

2 files changed

Lines changed: 73 additions & 0 deletions

File tree

frontend/src/pages/AboutUs.css

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
.about-container {
2+
max-width: 800px;
3+
margin: 60px auto;
4+
padding: 20px;
5+
background: #1e1e1e;
6+
color: #fff;
7+
border-radius: 12px;
8+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
9+
}
10+
11+
.about-title {
12+
font-size: 2.5rem;
13+
font-weight: bold;
14+
margin-bottom: 20px;
15+
text-align: center;
16+
color: #4dabf7;
17+
}
18+
19+
.about-text {
20+
font-size: 1.1rem;
21+
line-height: 1.6;
22+
margin-bottom: 16px;
23+
}
24+
25+
.highlight {
26+
color: #4dabf7;
27+
font-weight: bold;
28+
}
29+
30+
.about-footer {
31+
margin-top: 30px;
32+
font-size: 0.95rem;
33+
text-align: center;
34+
border-top: 1px solid #444;
35+
padding-top: 15px;
36+
color: #ccc;
37+
}

frontend/src/pages/AboutUs.js

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
// src/pages/AboutUs.js
2+
import React from "react";
3+
import "./AboutUs.css"; // ✅ optional separate CSS if you want custom styles
4+
5+
const AboutUs = () => {
6+
return (
7+
<div className="about-container">
8+
<h1 className="about-title">About Us</h1>
9+
<p className="about-text">
10+
Welcome to <span className="highlight">AI Debug</span>, your
11+
AI-powered debugging companion. Our mission is to help developers find
12+
and fix bugs smarter and faster with real-time insights and code
13+
suggestions.
14+
</p>
15+
16+
<p className="about-text">
17+
Whether you’re a beginner learning to code or an experienced developer
18+
working on large projects, our platform provides intelligent
19+
recommendations, performance optimizations, and bug detection powered by
20+
AI.
21+
</p>
22+
23+
<p className="about-text">
24+
We believe in making coding easier, more efficient, and accessible to
25+
everyone. 🚀
26+
</p>
27+
28+
<div className="about-footer">
29+
<p>📩 Contact us: support@aidebug.com</p>
30+
<p>🌐 Visit: github.com/bhola-dev58</p>
31+
</div>
32+
</div>
33+
);
34+
};
35+
36+
export default AboutUs;

0 commit comments

Comments
 (0)