File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff line change 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 ;
You can’t perform that action at this time.
0 commit comments