Skip to content

Commit 786b6e5

Browse files
committed
trying to fix the contact form
1 parent 09e856b commit 786b6e5

2 files changed

Lines changed: 25 additions & 24 deletions

File tree

src/App.jsx

Lines changed: 25 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -12,30 +12,33 @@ function App() {
1212
<img src={maxtekLogo} className="logo" alt="Maxtek logo" />
1313
<h1>Maxtek Consulting</h1>
1414
</div>
15-
15+
1616
<div className="container">
17-
<div className="box">
18-
<h2>Services</h2>
19-
<p>We can provide expertise in the following areas:</p>
20-
<ul>
21-
<li>C, C++, and Go</li>
22-
<li>CMake build systems</li>
23-
<li>Linux kernel development</li>
24-
<li>Embedded systems</li>
25-
<li>Open source projects</li>
26-
<li>CI/CD integration</li>
27-
</ul>
28-
</div>
29-
<div className="box">
30-
<h2>Projects</h2>
31-
<p>Here are some of our active projects:</p>
32-
<ProjectList />
33-
<p>Check out our <a href="https://github.com/maxtek6">GitHub</a> for more projects.</p>
34-
</div>
35-
<div className="box">
36-
<ContactForm />
17+
<div className="box">
18+
<h2>Services</h2>
19+
<p>We can provide expertise in the following areas:</p>
20+
<ul>
21+
<li>C, C++, and Go</li>
22+
<li>CMake build systems</li>
23+
<li>Linux kernel development</li>
24+
<li>Embedded systems</li>
25+
<li>Open source projects</li>
26+
<li>CI/CD integration</li>
27+
</ul>
28+
</div>
29+
<div className="box">
30+
<h2>Projects</h2>
31+
<p>Here are some of our active projects:</p>
32+
<ProjectList />
33+
<p>Check out our <a href="https://github.com/maxtek6">GitHub</a> for more projects.</p>
34+
</div>
35+
<div className="box">
36+
<h2>Contact</h2>
37+
<p>For help with custom software or open source development.</p>
38+
39+
<ContactForm />
40+
</div>
3741
</div>
38-
</div>
3942
</>
4043
)
4144
}

src/ContactForm.jsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ function ContactForm() {
3939

4040
return (
4141
<form onSubmit={handleSubmit} style={{ display: 'flex', flexDirection: 'column', gap: '1rem', maxWidth: '400px' }}>
42-
<h2>Contact</h2>
43-
<p>For help with custom software or open source development.</p>
4442
<input
4543
type="text"
4644
name="name"

0 commit comments

Comments
 (0)