-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHome.js
More file actions
57 lines (52 loc) · 2.87 KB
/
Home.js
File metadata and controls
57 lines (52 loc) · 2.87 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import React from "react";
import "./Home.css";
const Home = () => {
return (
<div className="home-container">
{/* Tagline and Image Section */}
<div className="tagline">
<h1>TechStudio: Building Digital Dreams, One Click at a Time</h1>
<p>
Welcome to TechStudio, where digital innovation meets purpose. From first impressions to lasting connections, we help your brand make a memorable impact online.
</p>
<h2>Unlock your business's potential with TechStudio.</h2> {/* Company tagline */}
<br />
<a href="/services"><button className="explore-button">Explore Our Services</button></a>
</div>
<div className="right-image">
<img src="Daco_3727461.png" alt="Techstudio Graphic" />
</div>
{/* Service Overview Section */}
<div className="service-overview">
<h3 className="service-overview-title">Discover How We Elevate Your Brand</h3>
<br />
<div className="services-container">
<div className="service-box">
<h4>SEO Optimization</h4>
<p>Achieve top rankings and increased visibility in search results, translating clicks into customers with our tailored SEO solutions designed for sustainable growth.</p>
</div>
<div className="service-box">
<h4>Web Development</h4>
<p>Transform your online identity with our stunning, user-friendly websites that not only capture attention but also convert visitors into loyal customers.</p>
</div>
<div className="service-box">
<h4>Social Media Management</h4>
<p>Maximize your social media impact with our expert handling, fostering genuine interactions that drive brand loyalty and amplify your message.</p>
</div>
</div>
</div>
{/* About Company Section */}
<div className="about-company">
<h2>Inside TechStudio: Our Commitment to Your Growth</h2>
<p>
Unleash your brand’s potential with <strong>TechStudio</strong>. From SEO and custom web development to brand design, content strategy, and social media mastery, our comprehensive digital solutions are crafted to captivate, connect, and convert. Let’s create a lasting impact together.
</p>
</div>
{/* Center Button Section */}
<div className="center-button">
<a href="/aboutus"><button>Get Started</button></a>
</div>
</div>
);
}
export default Home;