summaryrefslogtreecommitdiff
path: root/_site
diff options
context:
space:
mode:
Diffstat (limited to '_site')
-rw-r--r--_site/GEMFILE15
-rw-r--r--_site/README.md0
-rw-r--r--_site/assets/css/main.css286
-rw-r--r--_site/assets/images/STG-logo-v1.pngbin0 -> 325912 bytes
-rw-r--r--_site/assets/images/cbc-screenshot-2025-07-03.pngbin0 -> 1400525 bytes
-rw-r--r--_site/assets/images/code-ga774fc2f1_1920.jpgbin0 -> 293075 bytes
-rw-r--r--_site/assets/images/pexels-designecologist-2526105.jpgbin0 -> 1660525 bytes
-rw-r--r--_site/assets/images/pexels-markus-spiske-2004161.jpgbin0 -> 525221 bytes
-rw-r--r--_site/assets/js/main.js6
-rw-r--r--_site/blog-article.html46
-rw-r--r--_site/blog/index.html51
-rw-r--r--_site/design.html82
-rw-r--r--_site/feed.xml19
-rw-r--r--_site/happy-4th-july/index.html60
-rw-r--r--_site/index.html101
-rw-r--r--_site/robots.txt1
-rw-r--r--_site/sitemap.xml21
17 files changed, 688 insertions, 0 deletions
diff --git a/_site/GEMFILE b/_site/GEMFILE
new file mode 100644
index 0000000..5d0a841
--- /dev/null
+++ b/_site/GEMFILE
@@ -0,0 +1,15 @@
+source "https://rubygems.org"
+
+# Specify Jekyll version (latest stable as of mid-2025 is ~4.3.x)
+gem "jekyll", "~> 4.3"
+
+# Plugins
+gem "jekyll-seo-tag"
+gem "jekyll-sitemap"
+gem "jekyll-feed"
+
+# If you are developing a custom theme locally, add:
+# gem "my-theme", path: "./my-theme"
+
+# For deployment on GitHub Pages (if using it), replace the above with:
+# gem "github-pages", group: :jekyll_plugins
diff --git a/_site/README.md b/_site/README.md
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/_site/README.md
diff --git a/_site/assets/css/main.css b/_site/assets/css/main.css
new file mode 100644
index 0000000..fa230ed
--- /dev/null
+++ b/_site/assets/css/main.css
@@ -0,0 +1,286 @@
+body,html {
+ padding: 0;
+ margin: 0;
+ background-color: #eee;
+ font-family: Arial, Helvetica, sans-serif;
+ overflow-x: hidden;
+}
+
+#Main {
+ max-width: 1000px;
+ width: 100%;
+ background-color: white;
+ margin: 0 auto;
+}
+
+.navBar ul {
+ list-style-type: none;
+ margin: 0;
+ padding: 0;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ transition: all 0.3s ease;
+}
+
+.navBar li {
+ margin: 0;
+ padding: 0;
+}
+
+img.logo {
+ width: 178px;
+ height: 60px;
+}
+
+.navBar ul li {
+ display: inline-block;
+}
+
+
+.navBar ul li a {
+ text-decoration: none;
+ padding: 10px 15px;
+ color: gray;
+}
+
+.navBar ul li a:hover {
+ text-decoration: underline;
+}
+
+#heroImage {
+ background-image: url('/assets/images/code-ga774fc2f1_1920.jpg');
+ background-size: cover;
+ background-position: center;
+ background-repeat: no-repeat;
+ padding: 100px 20px;
+ color: white;
+ text-align: center;
+
+}
+
+#heroImage h1 {
+ text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
+}
+
+#heroImage p {
+ text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
+}
+
+#heroImage a {
+ color: white;
+ padding: 10px 15px;
+ border: 1px solid;
+ background-color: rgba(16, 16, 232, 0.722);
+ display: inline-block;
+ border-radius: 4px;
+}
+
+#mainContent {
+ margin: 10px 20px;
+}
+
+#mainContent h2 {
+ text-align: center;
+}
+
+#blog ul {
+ padding: 0;
+ margin: 0;
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 20px;
+}
+
+#blog ul li {
+ list-style-type: none;
+ margin: 0;
+ padding: 0;
+ width: 320px;
+}
+
+#blog img {
+ width: 100%;
+ height: auto;
+ border-radius: 1em;
+}
+
+#our-work ul {
+ padding: 0;
+ margin: 0;
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 20px;
+}
+
+#our-work ul li {
+ list-style-type: none;
+ margin: 0;
+ padding: 0;
+ width: 320px;
+}
+
+#our-work ul li img {
+ width: 100%;
+ height: auto;
+ border-radius: 1em;
+}
+
+/* Blog post container links */
+#blog ul li a {
+ display: block;
+ text-decoration: none;
+ color: inherit;
+ border: 1px solid #ddd;
+ border-radius: 8px;
+ overflow: hidden;
+ /* transition: transform 0.2s ease, box-shadow 0.2s ease; */
+ background-color: #fff;
+}
+
+/* Hover effect for card lift */
+#blog ul li a:hover {
+ /* transform: translateY(-5px); */
+ box-shadow: 0 4px 12px rgba(0,0,0,0.1);
+}
+
+/* Blog post title */
+#blog ul li h3 {
+ font-size: 1.25em;
+ margin: 10px 15px 5px 15px;
+ color: #333;
+ /* transition: color 0.2s ease; */
+}
+
+/* Blog post date */
+.post-date {
+ font-size: 0.9em;
+ color: #888;
+ margin-bottom: 10px;
+ }
+
+/* Change title color on hover for visual feedback */
+#blog ul li a:hover h3 {
+ color: #0d47a1; /* deep brand blue, adjust as needed */
+}
+
+/* Blog description */
+#blog ul li p {
+ font-size: 0.95em;
+ margin: 0 15px 15px 15px;
+ color: #666;
+ line-height: 1.4;
+}
+
+#solutions p { text-align: center; }
+
+/* Blog Article Page */
+
+#Blog {
+ max-width: 800px;
+ width: 100%;
+ margin: 30px auto;
+ padding: 0 20px;
+}
+
+#Blog .featured-image {
+ width: 100%;
+ height: auto;
+ border-radius: 8px 8px;
+}
+
+/* Article title */
+#Blog h1 {
+ font-size: 2em;
+ margin-top: 20px;
+ margin-bottom: 20px;
+ text-align: center;
+ color: #333;
+}
+
+/* Article text */
+#Blog p {
+ line-height: 1.7;
+ font-size: 1.05em;
+ color: #444;
+ text-align: justify;
+}
+
+footer {
+ width: 100%;
+ background-color: #fff;
+ text-align: center;
+ color: #9f9f9f;
+}
+
+footer a {
+ color: #444;
+ text-decoration: none;
+}
+
+footer a:hover {
+ color: #666;
+ text-decoration: underline;
+}
+
+/* Mobile Styles */
+
+.hamburger {
+ display: none; /* hidden by default */
+ font-size: 30px;
+ cursor: pointer;
+ padding: 10px 20px;
+}
+
+@media (max-width: 768px) {
+ .hamburger {
+ display: block;
+ }
+
+ .navBar ul {
+ display: none; /* hide nav links initially on mobile */
+ flex-direction: column;
+ background-color: white;
+ width: 100%;
+ text-align: center;
+ padding: 0;
+ margin: 0;
+ }
+
+ .navBar ul.show {
+ display: flex; /* show when toggled */
+ }
+
+ .navBar ul li {
+ display: block;
+ }
+}
+
+@media (max-width: 600px) {
+ #heroImage {
+ padding: 50px 10px;
+ }
+ .navBar ul {
+ flex-direction: column;
+ }
+ .navBar ul li {
+ display: block;
+ text-align: center;
+ }
+}
+
+/* Responsive adjustments */
+@media (max-width: 768px) {
+ #Blog {
+ margin: 20px auto;
+ padding: 0 10px;
+ }
+
+ #Blog h1 {
+ font-size: 1.5em;
+ }
+
+ #Blog p {
+ font-size: 1em;
+ }
+}
diff --git a/_site/assets/images/STG-logo-v1.png b/_site/assets/images/STG-logo-v1.png
new file mode 100644
index 0000000..eac4f7d
--- /dev/null
+++ b/_site/assets/images/STG-logo-v1.png
Binary files differ
diff --git a/_site/assets/images/cbc-screenshot-2025-07-03.png b/_site/assets/images/cbc-screenshot-2025-07-03.png
new file mode 100644
index 0000000..252e1dd
--- /dev/null
+++ b/_site/assets/images/cbc-screenshot-2025-07-03.png
Binary files differ
diff --git a/_site/assets/images/code-ga774fc2f1_1920.jpg b/_site/assets/images/code-ga774fc2f1_1920.jpg
new file mode 100644
index 0000000..bd71d91
--- /dev/null
+++ b/_site/assets/images/code-ga774fc2f1_1920.jpg
Binary files differ
diff --git a/_site/assets/images/pexels-designecologist-2526105.jpg b/_site/assets/images/pexels-designecologist-2526105.jpg
new file mode 100644
index 0000000..08be36f
--- /dev/null
+++ b/_site/assets/images/pexels-designecologist-2526105.jpg
Binary files differ
diff --git a/_site/assets/images/pexels-markus-spiske-2004161.jpg b/_site/assets/images/pexels-markus-spiske-2004161.jpg
new file mode 100644
index 0000000..315e7c4
--- /dev/null
+++ b/_site/assets/images/pexels-markus-spiske-2004161.jpg
Binary files differ
diff --git a/_site/assets/js/main.js b/_site/assets/js/main.js
new file mode 100644
index 0000000..c8741b0
--- /dev/null
+++ b/_site/assets/js/main.js
@@ -0,0 +1,6 @@
+ const hamburger = document.querySelector(".hamburger");
+ const navLinks = document.querySelector(".navBar ul");
+
+ hamburger.addEventListener("click", () => {
+ navLinks.classList.toggle("show");
+ });
diff --git a/_site/blog-article.html b/_site/blog-article.html
new file mode 100644
index 0000000..c470805
--- /dev/null
+++ b/_site/blog-article.html
@@ -0,0 +1,46 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <link rel="stylesheet" type="text/css" href="/assets/css/main.css">
+ <title>Home - Sanders Technology Group</title>
+</head>
+<body>
+ <div id="Main">
+ <div class="navBar">
+ <div class="hamburger">&#9776;</div>
+ <ul>
+ <li><a href="#" alt="Home">Home</a></li>
+ <li><a href="#about" alt="About">About</a></li>
+ <li><a href="#blog" alt="Blog">Blog</a></li>
+ <li><img class="logo" src="STG-logo-v1.png"></li>
+ <li><a href="#solutions" alt="Solutions">Solutions</a></li>
+ <li><a href="#our-work" alt="Our Work">Our Work</a></li>
+ <li><a href="#contact" alt="Contact">Contact</a></li>
+ </ul>
+ </div>
+ <div id="Blog">
+ <img class="featured-image" src="code-ga774fc2f1_1920.jpg">
+ <h1>Lorem Ipsum</h1>
+ <p>
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus ullamcorper varius nunc, sit amet luctus ex semper et. Integer volutpat libero vel ornare ultricies. Donec at iaculis enim, ut convallis lorem. Cras tincidunt, quam eu blandit faucibus, lorem nisl consequat lorem, eu suscipit nisl purus sit amet nulla. Maecenas ac elit at odio fringilla rutrum. Morbi sit amet tristique eros, nec tempor nisl. Nam ornare erat in sem fermentum, nec iaculis felis efficitur. Nulla facilisi. Proin sed mauris ut purus posuere vehicula. Cras in leo vel sapien convallis fermentum. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.
+
+ Aenean luctus efficitur nunc, sed tincidunt nisi malesuada nec. Ut vehicula erat vel lacus fringilla, vitae mollis risus viverra. Proin dictum varius nibh, vel consequat lectus gravida non. Vestibulum aliquam lectus id diam sodales gravida. Morbi vulputate, sapien at fermentum rhoncus, leo nisi lacinia quam, vitae tincidunt neque sapien sit amet enim. Sed ullamcorper lorem at nisi pharetra, quis scelerisque erat pulvinar. Curabitur fringilla quam velit, nec gravida sem bibendum at. Duis fermentum tincidunt neque, nec venenatis elit fermentum in. Pellentesque pellentesque quam ut lorem rutrum luctus. Morbi et arcu urna. Nulla facilisi. Aenean nec gravida ex.
+
+ Praesent feugiat venenatis arcu in posuere. Curabitur id ipsum nec sapien feugiat feugiat. Vestibulum eu ex metus. Vestibulum viverra dapibus elit, in vehicula magna suscipit nec. Aenean in velit elit. In pulvinar efficitur mauris, eget tincidunt leo porttitor eget. Etiam vitae ullamcorper magna, sed dignissim arcu. Sed quis risus imperdiet, convallis odio vel, rhoncus est. Etiam at viverra purus. Curabitur sit amet efficitur urna. Ut finibus lorem quis turpis facilisis tempor. Suspendisse sed sapien sed nisl bibendum sagittis et a elit.
+
+ Vestibulum in lacus vel massa sodales bibendum. Maecenas id posuere erat, vel rutrum turpis. Etiam in metus sed elit varius sodales. Proin vulputate luctus dolor vel vulputate. Curabitur quis lorem finibus, pretium nulla in, condimentum magna. Sed vulputate velit lectus, sed tincidunt sem porttitor at. Vivamus dignissim, augue vel consectetur vehicula, nulla nulla sodales erat, sed porta purus nunc at lorem. Nullam rhoncus scelerisque dui, sed pulvinar ligula gravida ut.
+
+ Sed semper odio ut leo elementum, nec sagittis est facilisis. Nulla facilisi. Duis tempor elit felis, vitae viverra purus bibendum vitae. Ut placerat sapien ac purus feugiat hendrerit. Etiam blandit lacus ac eros ultrices mattis. Fusce bibendum sagittis mauris, vitae imperdiet leo blandit non. In aliquam dolor a pulvinar lacinia. Ut sodales feugiat mi, a euismod justo. Phasellus ac malesuada magna. Pellentesque ullamcorper convallis pulvinar. Fusce varius, orci nec aliquam suscipit, justo dolor consequat felis, a fermentum sapien enim at sem.
+
+ Praesent ut fermentum erat, et dignissim erat. Suspendisse nec turpis id libero dictum mattis. Nullam hendrerit est et facilisis efficitur. Duis nec metus sit amet arcu fermentum feugiat. Pellentesque finibus quam ac erat ornare sollicitudin. Vestibulum ut hendrerit nisi. Duis dictum odio nec velit laoreet, nec ultricies sem euismod. Aliquam erat volutpat. Donec in velit eu lectus tempus blandit. Nam ultricies felis vel orci efficitur, ac elementum libero facilisis. Vestibulum vehicula lacus sit amet dui malesuada sollicitudin. Nullam sed nisl vel odio malesuada laoreet. Quisque at odio in erat volutpat sodales et id dolor. Pellentesque pulvinar orci non dui bibendum, ac fermentum dolor varius.
+ </p>
+ </div>
+ <footer id="footer">
+ <small>&copy; Sanders Technology Group, LLC Designed by <a href="https://ben.sanders.life/">Ben Sanders</a></small>
+ </footer>
+ </div>
+ <script src="/assets/js/main.js"></script>
+</body>
+</html> \ No newline at end of file
diff --git a/_site/blog/index.html b/_site/blog/index.html
new file mode 100644
index 0000000..27b1bea
--- /dev/null
+++ b/_site/blog/index.html
@@ -0,0 +1,51 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>Blog - Sanders Technology Group</title>
+ <link rel="stylesheet" href="/assets/css/main.css">
+</head>
+<body>
+ <div id="Main">
+ <div class="navBar">
+ <div class="hamburger">&#9776;</div>
+ <ul>
+ <li><a href="/">Home</a></li>
+ <li><a href="/#about/">About</a></li>
+ <li><a href="/blog/">Blog</a></li>
+ <li><img class="logo" src="/assets/images/STG-logo-v1.png"></li>
+ <li><a href="/#solutions/">Solutions</a></li>
+ <li><a href="/#our-work/">Our Work</a></li>
+ <li><a href="/#contact/">Contact</a></li>
+ </ul>
+ </div>
+
+ <div id="mainContent">
+ <!-- About, Blog tiles, Solutions, etc. -->
+ <div id="blog">
+ <h2>Blog</h2>
+ <ul>
+
+ <li>
+ <a href="/happy-4th-july/">
+
+ <img src="/assets/images/pexels-designecologist-2526105.jpg">
+
+ <h3>Happy Fourth of July</h3>
+ <p><p>Happy Fourth of July from Your Friendly Neighborhood IT Shop!</p>
+</p>
+ </a>
+ </li>
+
+ </ul>
+ </div>
+ </div>
+ <footer id="footer">
+ <small>&copy; Sanders Technology Group, LLC Designed by <a href="https://ben.sanders.life/">Ben Sanders</a></small>
+ </footer>
+
+ </div>
+ <script src="/assets/js/main.js"></script>
+</body>
+</html>
diff --git a/_site/design.html b/_site/design.html
new file mode 100644
index 0000000..529dc77
--- /dev/null
+++ b/_site/design.html
@@ -0,0 +1,82 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <link rel="stylesheet" type="text/css" href="main.css">
+ <title>Home - Sanders Technology Group</title>
+</head>
+<body>
+ <div id="Main">
+ <div class="navBar">
+ <div class="hamburger">&#9776;</div>
+ <ul>
+ <li><a href="#" alt="Home">Home</a></li>
+ <li><a href="#about" alt="About">About</a></li>
+ <li><a href="#blog" alt="Blog">Blog</a></li>
+ <li><img class="logo" src="STG-logo-v1.png"></li>
+ <li><a href="#solutions" alt="Solutions">Solutions</a></li>
+ <li><a href="#our-work" alt="Our Work">Our Work</a></li>
+ <li><a href="#contact" alt="Contact">Contact</a></li>
+ </ul>
+ </div>
+ <div id="heroImage">
+ <h1>Transform Your Business Presence Online</h1>
+ <p>
+ Your customers are searching for you – make sure they find a website that reflects your brand’s quality and trustworthiness.
+ We design beautiful, effective websites that drive results.
+ </p>
+ <a href="mailto:sales@sanderstg.com">Get <b>FREE</b> Consulation</a>
+ </div>
+ <div id="mainContent">
+ <div id="about">
+ <h2>About Us</h2>
+ <p>
+ Sanders Technology Group is a web design and technology agency based in the beautiful Northeast Georgia Mountains. As a family-owned business led by two brothers, we are dedicated to providing exceptional web design and technology services to businesses throughout Northeast Georgia.
+
+ Whether your needs are big or small, we are ready to help solve your technology challenges and empower your business with reliable solutions. Contact us today to discuss how we can support your business goals.
+ </p>
+ <h2>Our Ideology</h2>
+ <p>
+ We value every website the same whether it’s a large company or a small town store. We will help you fulfill your vision and move your business forward. We believe that every business should have a quality website and we know how important it is to your customers to have this connection with you!
+
+ We also believe that larger web development companies may not have your business in their best interest. We highly value every single website and aim to maintain each site individually at a high level.
+ </p>
+ </div>
+ <div id="blog">
+ <h2>Blog</h2>
+ <ul>
+ <li><a href="#"><img src="pexels-markus-spiske-2004161.jpg"><h3>Blog Title</h3><p>Blog Description</p></a></li>
+ <li><a href="#"><img src="pexels-markus-spiske-2004161.jpg"><h3>Blog Title</h3><p>Blog Description</p></a></li>
+ <li><a href="#"><img src="pexels-markus-spiske-2004161.jpg"><h3>Blog Title</h3><p>Blog Description</p></a></li>
+ <li><a href="#"><img src="pexels-markus-spiske-2004161.jpg"><h3>Blog Title</h3><p>Blog Description</p></a></li>
+ <li><a href="#"><img src="pexels-markus-spiske-2004161.jpg"><h3>Blog Title</h3><p>Blog Description</p></a></li>
+ <li><a href="#"><img src="pexels-markus-spiske-2004161.jpg"><h3>Blog Title</h3><p>Blog Description</p></a></li>
+ </ul>
+ </div>
+ <div id="solutions">
+ <h2>Solutions</h2>
+ <ul>
+ <li>Web Development</li>
+ <li>PC Repair</li>
+ <li>Data Recovery</li>
+ <li>Remote Support</li>
+ <li>Website Hosting</li>
+ </ul>
+ </div>
+ <div id="our-work">
+ <h2>Our Work</h2>
+ <p>In Progress</p>
+ </div>
+ <div id="contact">
+ <h2>Contact Us</h2>
+ <p>Contact info goes here.</p>
+ </div>
+ </div>
+ <footer id="footer">
+ <small>&copy; Sanders Technology Group, LLC Designed by <a href="https://ben.sanders.life/">Ben Sanders</a></small>
+ </footer>
+ </div>
+ <script src="main.js"></script>
+</body>
+</html> \ No newline at end of file
diff --git a/_site/feed.xml b/_site/feed.xml
new file mode 100644
index 0000000..ec28f95
--- /dev/null
+++ b/_site/feed.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.4.1">Jekyll</generator><link href="http://localhost:4000/feed.xml" rel="self" type="application/atom+xml" /><link href="http://localhost:4000/" rel="alternate" type="text/html" /><updated>2025-07-04T14:31:29-04:00</updated><id>http://localhost:4000/feed.xml</id><title type="html">Sanders Technology Group</title><subtitle>Web design and technology agency serving Northeast Georgia with beautiful, effective websites and technology solutions.</subtitle><author><name>Sanders Technology Group</name><email>sales@sanderstg.com</email></author><entry><title type="html">Happy Fourth of July</title><link href="http://localhost:4000/happy-4th-july/" rel="alternate" type="text/html" title="Happy Fourth of July" /><published>2025-07-04T00:00:00-04:00</published><updated>2025-07-04T00:00:00-04:00</updated><id>http://localhost:4000/happy-4th-july</id><content type="html" xml:base="http://localhost:4000/happy-4th-july/"><![CDATA[<p>Happy Fourth of July from Your Friendly Neighborhood IT Shop!</p>
+
+<p>This post marks a special occasion for us – not just because it’s Independence Day, but also because it’s the launch of our newly designed website! We’re excited to welcome you to this fresh online space that we’ve built with speed, ease of use, and clarity in mind.</p>
+
+<p>We know how frustrating it can be when websites take forever to load, whether you’re shopping online, reading the news, or trying to get IT support quickly. That’s why one of our main goals with this redesign was to create a faster, cleaner experience for our customers and community. You’ll notice pages load almost instantly now, making it easier than ever to find the services and information you need.</p>
+
+<p>As we celebrate the Fourth of July today, we’re reminded of the importance of independence and freedom – values that extend beyond our country to how you use technology every day. Whether it’s having the freedom to work remotely without worrying about computer crashes, or the independence of knowing your backups are secure and your devices are protected, our mission is to support you in staying connected and stress-free.</p>
+
+<p>Our team is taking some well-deserved time off today to celebrate with family and friends, grill some burgers, and enjoy the fireworks. But starting Monday, we’re back and ready to serve our customers with the same reliable, friendly service you’ve come to expect. From virus removals and computer cleanups to setting up new business networks and protecting your data from cyber threats, we’re here to help you keep your technology working for you, not against you.</p>
+
+<p>We’re also excited to kick off our blog with this post. Going forward, we’ll be sharing helpful tips, troubleshooting guides, local business spotlights, and updates about our shop. Our goal is to keep you informed, empowered, and confident when it comes to anything tech-related. If you ever have questions or suggestions for topics you’d like us to cover, don’t hesitate to reach out – we love connecting with our customers and making sure our content is relevant and practical.</p>
+
+<p>As you celebrate today, remember to stay safe – not just with fireworks, but with your devices too. If you’re working from home or catching up on projects over the holiday, make sure your antivirus is up to date, your passwords are strong, and your backups are current. And if you need help with any of that, you know where to find us.</p>
+
+<p>Thank you for being a part of our community. We’re grateful for the opportunity to serve you and look forward to many more years of keeping your technology running smoothly. Enjoy the holiday, celebrate with those you care about, and check back soon for more posts to help you get the most out of your tech.</p>
+
+<p>Happy Fourth of July from all of us at Sanders Technology Group!</p>
+
+<p>Photo by Designecologist: https://www.pexels.com/photo/photo-of-fireworks-display-2526105/</p>]]></content><author><name>Sanders Technology Group</name></author><summary type="html"><![CDATA[Happy Fourth of July from Your Friendly Neighborhood IT Shop!]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://localhost:4000/assets/images/pexels-designecologist-2526105.jpg" /><media:content medium="image" url="http://localhost:4000/assets/images/pexels-designecologist-2526105.jpg" xmlns:media="http://search.yahoo.com/mrss/" /></entry></feed> \ No newline at end of file
diff --git a/_site/happy-4th-july/index.html b/_site/happy-4th-july/index.html
new file mode 100644
index 0000000..d9c84b7
--- /dev/null
+++ b/_site/happy-4th-july/index.html
@@ -0,0 +1,60 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>Happy Fourth of July - Sanders Technology Group</title>
+ <link rel="stylesheet" href="/assets/css/main.css">
+</head>
+<body>
+ <div id="Main">
+ <div class="navBar">
+ <div class="hamburger">&#9776;</div>
+ <ul>
+ <li><a href="/">Home</a></li>
+ <li><a href="/#about/">About</a></li>
+ <li><a href="/blog/">Blog</a></li>
+ <li><img class="logo" src="/assets/images/STG-logo-v1.png"></li>
+ <li><a href="/#solutions/">Solutions</a></li>
+ <li><a href="/#our-work/">Our Work</a></li>
+ <li><a href="/#contact/">Contact</a></li>
+ </ul>
+ </div>
+
+ <div id="Blog">
+ <article class="post">
+
+ <img src="/assets/images/pexels-designecologist-2526105.jpg" class="featured-image">
+
+ <h1>Happy Fourth of July</h1>
+ <small><p class="post-date">Published Date: July 04, 2025</p></small>
+ <p>Happy Fourth of July from Your Friendly Neighborhood IT Shop!</p>
+
+<p>This post marks a special occasion for us – not just because it’s Independence Day, but also because it’s the launch of our newly designed website! We’re excited to welcome you to this fresh online space that we’ve built with speed, ease of use, and clarity in mind.</p>
+
+<p>We know how frustrating it can be when websites take forever to load, whether you’re shopping online, reading the news, or trying to get IT support quickly. That’s why one of our main goals with this redesign was to create a faster, cleaner experience for our customers and community. You’ll notice pages load almost instantly now, making it easier than ever to find the services and information you need.</p>
+
+<p>As we celebrate the Fourth of July today, we’re reminded of the importance of independence and freedom – values that extend beyond our country to how you use technology every day. Whether it’s having the freedom to work remotely without worrying about computer crashes, or the independence of knowing your backups are secure and your devices are protected, our mission is to support you in staying connected and stress-free.</p>
+
+<p>Our team is taking some well-deserved time off today to celebrate with family and friends, grill some burgers, and enjoy the fireworks. But starting Monday, we’re back and ready to serve our customers with the same reliable, friendly service you’ve come to expect. From virus removals and computer cleanups to setting up new business networks and protecting your data from cyber threats, we’re here to help you keep your technology working for you, not against you.</p>
+
+<p>We’re also excited to kick off our blog with this post. Going forward, we’ll be sharing helpful tips, troubleshooting guides, local business spotlights, and updates about our shop. Our goal is to keep you informed, empowered, and confident when it comes to anything tech-related. If you ever have questions or suggestions for topics you’d like us to cover, don’t hesitate to reach out – we love connecting with our customers and making sure our content is relevant and practical.</p>
+
+<p>As you celebrate today, remember to stay safe – not just with fireworks, but with your devices too. If you’re working from home or catching up on projects over the holiday, make sure your antivirus is up to date, your passwords are strong, and your backups are current. And if you need help with any of that, you know where to find us.</p>
+
+<p>Thank you for being a part of our community. We’re grateful for the opportunity to serve you and look forward to many more years of keeping your technology running smoothly. Enjoy the holiday, celebrate with those you care about, and check back soon for more posts to help you get the most out of your tech.</p>
+
+<p>Happy Fourth of July from all of us at Sanders Technology Group!</p>
+
+<p>Photo by Designecologist: https://www.pexels.com/photo/photo-of-fireworks-display-2526105/</p>
+
+ </article>
+</div>
+ <footer id="footer">
+ <small>&copy; Sanders Technology Group, LLC Designed by <a href="https://ben.sanders.life/">Ben Sanders</a></small>
+ </footer>
+
+ </div>
+ <script src="/assets/js/main.js"></script>
+</body>
+</html>
diff --git a/_site/index.html b/_site/index.html
new file mode 100644
index 0000000..cc8eaab
--- /dev/null
+++ b/_site/index.html
@@ -0,0 +1,101 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>Home - Sanders Technology Group</title>
+ <link rel="stylesheet" href="/assets/css/main.css">
+</head>
+<body>
+ <div id="Main">
+ <div class="navBar">
+ <div class="hamburger">&#9776;</div>
+ <ul>
+ <li><a href="/">Home</a></li>
+ <li><a href="/#about/">About</a></li>
+ <li><a href="/blog/">Blog</a></li>
+ <li><img class="logo" src="/assets/images/STG-logo-v1.png"></li>
+ <li><a href="/#solutions/">Solutions</a></li>
+ <li><a href="/#our-work/">Our Work</a></li>
+ <li><a href="/#contact/">Contact</a></li>
+ </ul>
+ </div>
+
+ <div id="heroImage">
+ <h1>Transform Your Business Presence Online</h1>
+ <p>Your customers are searching for you – make sure they find a website that reflects your brand’s quality and trustworthiness. We design beautiful, effective websites that drive results.</p>
+ <a href="mailto:sales@sanderstg.com">Get a <b>FREE</b> Consultation</a>
+</div>
+
+<div id="mainContent">
+ <!-- About, Blog tiles, Solutions, etc. -->
+ <div id="about">
+ <h2>About Us</h2>
+ <p>
+ Sanders Technology Group is a web design and technology agency based in the beautiful Northeast Georgia Mountains. As a family-owned business led by two brothers, we are dedicated to providing exceptional web design and technology services to businesses throughout Northeast Georgia.
+
+ Whether your needs are big or small, we are ready to help solve your technology challenges and empower your business with reliable solutions. Contact us today to discuss how we can support your business goals.
+ </p>
+ <h2>Our Ideology</h2>
+ <p>
+ We value every website the same whether it’s a large company or a small town store. We will help you fulfill your vision and move your business forward. We believe that every business should have a quality website and we know how important it is to your customers to have this connection with you!
+
+ We also believe that larger web development companies may not have your business in their best interest. We highly value every single website and aim to maintain each site individually at a high level.
+ </p>
+ </div>
+ <div id="blog">
+ <h2>Blog</h2>
+ <ul>
+
+ <li>
+ <a href="/happy-4th-july/">
+
+ <img src="/assets/images/pexels-designecologist-2526105.jpg">
+
+ <h3>Happy Fourth of July</h3>
+ <p><p>Happy Fourth of July from Your Friendly Neighborhood IT Shop!</p>
+</p>
+ </a>
+ </li>
+
+ </ul>
+ </div>
+ <div id="solutions">
+ <h2>Solutions</h2>
+ <ul>
+ <li>Web Development</li>
+ <li>PC Repair</li>
+ <li>Data Recovery</li>
+ <li>Remote Support</li>
+ <li>Website Hosting</li>
+ </ul>
+ </div>
+ <div id="our-work">
+ <h2>Our Work</h2>
+ <ul>
+ <li>
+ <a href="https://centerbaptist.com/" target="_blank">
+ <img src="/assets/images/cbc-screenshot-2025-07-03.png">
+ </a>
+ </li>
+ <li>
+ <a href="">
+ <img src="">
+ </a>
+ </li>
+ </ul>
+ </div>
+ <div id="contact">
+ <h2>Contact Us</h2>
+ <p>The best way to contact us is using the 'Get a FREE Consultation' link at thet op of this page.</p>
+ </div>
+</div>
+
+ <footer id="footer">
+ <small>&copy; Sanders Technology Group, LLC Designed by <a href="https://ben.sanders.life/">Ben Sanders</a></small>
+ </footer>
+
+ </div>
+ <script src="/assets/js/main.js"></script>
+</body>
+</html>
diff --git a/_site/robots.txt b/_site/robots.txt
new file mode 100644
index 0000000..d297064
--- /dev/null
+++ b/_site/robots.txt
@@ -0,0 +1 @@
+Sitemap: http://localhost:4000/sitemap.xml
diff --git a/_site/sitemap.xml b/_site/sitemap.xml
new file mode 100644
index 0000000..9564109
--- /dev/null
+++ b/_site/sitemap.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
+<url>
+<loc>http://localhost:4000/happy-4th-july/</loc>
+<lastmod>2025-07-04T00:00:00-04:00</lastmod>
+</url>
+<url>
+<loc>http://localhost:4000/blog/</loc>
+</url>
+<url>
+<loc>http://localhost:4000/</loc>
+</url>
+<url>
+<loc>http://localhost:4000/blog-article.html</loc>
+<lastmod>2025-07-03T14:10:55-04:00</lastmod>
+</url>
+<url>
+<loc>http://localhost:4000/design.html</loc>
+<lastmod>2025-07-03T12:48:42-04:00</lastmod>
+</url>
+</urlset>