-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gpt boilerplate
- Loading branch information
Showing
1 changed file
with
107 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Strategic Insights Consulting</title> | ||
<link rel="stylesheet" href="styles.css"> | ||
</head> | ||
<body> | ||
<!-- Header --> | ||
<header class="header"> | ||
<div class="logo">Strategic Insights Consulting</div> | ||
<nav class="navbar"> | ||
<ul> | ||
<li><a href="#about">About</a></li> | ||
<li><a href="#services">Services</a></li> | ||
<li><a href="#case-studies">Case Studies</a></li> | ||
<li><a href="#contact">Contact</a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
|
||
<!-- Hero Section --> | ||
<section class="hero"> | ||
<div class="hero-text"> | ||
<h1>Maximizing Business Efficiency with Expert Consulting</h1> | ||
<p>We specialize in streamlining operations and boosting profitability with no-nonsense strategies and clear outcomes.</p> | ||
<a href="#contact" class="cta-button">Request a Free Consultation</a> | ||
</div> | ||
<div class="hero-image"> | ||
<img src="https://via.placeholder.com/600x400" alt="Consulting Business Strategy"> | ||
</div> | ||
</section> | ||
|
||
<!-- About Us Section --> | ||
<section id="about" class="section about"> | ||
<h2>About Strategic Insights Consulting</h2> | ||
<p>We provide actionable management consulting services that help businesses optimize operations, cut costs, and drive growth with effective strategies tailored to your needs.</p> | ||
<a href="#contact" class="cta-button">Learn More</a> | ||
</section> | ||
|
||
<!-- Services Section --> | ||
<section id="services" class="section services"> | ||
<h2>Our Services</h2> | ||
<div class="service-list"> | ||
<div class="service-item"> | ||
<h3>Process Optimization</h3> | ||
<p>We conduct in-depth analysis of your workflow to identify bottlenecks and inefficiencies, ensuring maximum performance with minimal waste.</p> | ||
</div> | ||
<div class="service-item"> | ||
<h3>Strategic Planning</h3> | ||
<p>We guide your business toward long-term success with data-driven strategies that align with your objectives and market trends.</p> | ||
</div> | ||
<div class="service-item"> | ||
<h3>Cost Management</h3> | ||
<p>Our experts help reduce unnecessary expenses without compromising quality, improving both your profitability and cash flow.</p> | ||
</div> | ||
</div> | ||
<a href="#contact" class="cta-button">Contact Us for a Tailored Solution</a> | ||
</section> | ||
|
||
<!-- Case Studies Section --> | ||
<section id="case-studies" class="section case-studies"> | ||
<h2>Our Success Stories</h2> | ||
<p>Explore how we’ve helped businesses like yours achieve sustainable growth through optimized processes and efficient management practices.</p> | ||
<div class="case-study-item"> | ||
<h3>Case Study 1: Optimizing Manufacturing</h3> | ||
<p>We assisted a mid-sized manufacturing company in reducing operational waste by 25%, improving production timelines by 20%, and increasing overall efficiency by 30%.</p> | ||
</div> | ||
<div class="case-study-item"> | ||
<h3>Case Study 2: Retail Growth</h3> | ||
<p>Our consulting team helped a regional retail chain cut overhead costs by 18%, while growing sales by 12% through targeted process changes and strategic planning.</p> | ||
</div> | ||
<a href="#contact" class="cta-button">Start Your Business Transformation</a> | ||
</section> | ||
|
||
<!-- Contact Us Section --> | ||
<section id="contact" class="section contact"> | ||
<h2>Contact Us</h2> | ||
<p>Are you ready to take your business to the next level? Reach out today to start optimizing your operations and accelerating your growth!</p> | ||
<form action="#" method="POST"> | ||
<label for="name">Your Name</label> | ||
<input type="text" id="name" name="name" required> | ||
|
||
<label for="email">Your Email</label> | ||
<input type="email" id="email" name="email" required> | ||
|
||
<label for="message">Your Message</label> | ||
<textarea id="message" name="message" required></textarea> | ||
|
||
<button type="submit" class="cta-button">Submit Inquiry</button> | ||
</form> | ||
</section> | ||
|
||
<!-- Footer --> | ||
<footer> | ||
<div class="footer-content"> | ||
<p>© 2025 Strategic Insights Consulting. All rights reserved.</p> | ||
<div class="social-links"> | ||
<a href="#" class="social-icon">LinkedIn</a> | ||
<a href="#" class="social-icon">Twitter</a> | ||
<a href="#" class="social-icon">Facebook</a> | ||
</div> | ||
</div> | ||
</footer> | ||
</body> | ||
</html> |