Files
webdev-site/index.html

116 lines
6.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="D@N Tech offers professional web development services including custom website development, responsive design, e-commerce solutions, SEO optimization, and website maintenance.">
<meta name="keywords" content="web development, custom websites, responsive design, e-commerce, SEO, website maintenance">
<meta name="author" content="Dustin Newkirk">
<link rel="canonical" href="https://dev.dustin.coffee/index.html">
<title>D@N Tech - Web Development Services</title>
<!-- Bootstrap CSS and JS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.min.js" integrity="sha384-0pUGZvbkm6XF6gxjEnlmuGrJXVbNuzT9qBBavbLwCsOGabYfZo0T0to5eqruptLy" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<link rel="stylesheet" href="styles.css">
<style>
html {
scroll-behavior: smooth;
}
</style>
</head>
<body>
<header class="text-center py-2">
<h1 style="color: var(--bs-secondary);">D@N Tech</h1>
<p>Your partner in web development</p>
<p><a href="https://dustin.coffee" target="_blank" class="text-white">Visit my main site</a></p>
</header>
<div class="d-flex flex-column min-vh-100" style="position: relative;">
<div class="container mt-4">
<h2>About Us</h2>
<p>Welcome to D@N Tech! We specialize in creating stunning and efficient websites for businesses of all sizes. Our team of experienced developers is dedicated to delivering high-quality web solutions that meet your unique needs.</p>
<h2>Services</h2>
<ul class="list-group">
<li class="list-group-item">Custom Website Development</li>
<li class="list-group-item">Responsive Design</li>
<li class="list-group-item">E-commerce Solutions</li>
<li class="list-group-item">SEO Optimization</li>
<li class="list-group-item">Website Maintenance</li>
</ul>
</div>
<div class="container mt-4">
<h2>Portfolio</h2>
<div class="row">
<div class="col-md-4 mb-3">
<div class="card">
<img src="assets/images/pcw.png" class="card-img-top" alt="Project 1">
<div class="card-body">
<h5 class="card-title">Pemu Counseling and Wellness</h5>
<p class="card-text">Pemu Counseling and Wellness is a comprehensive mental health service provider offering personalized counseling and wellness programs to help individuals achieve their mental health goals.</p>
<a href="https://pemucouselingandwellness.com" target="_blank" class="btn btn-primary">Learn More</a>
</div>
</div>
</div>
<div class="col-md-4 mb-3">
<div class="card">
<img src="assets/images/knphd.png" class="card-img-top" alt="Project 2">
<div class="card-body">
<h5 class="card-title">Kayla Newkirk</h5>
<p class="card-text">Kayla Newkirk is a PhD candidate specializing in mental health counseling and supervision, dedicated to advancing the field through research and practice.</p>
<a href="https://kayla.hobokenchicken.com" target="_blank" class="btn btn-primary">Learn More</a>
</div>
</div>
</div>
<div class="col-md-4 mb-3">
<div class="card">
<img src="assets/images/4th.png" class="card-img-top" alt="Project 3">
<div class="card-body">
<h5 class="card-title">4th & Goal</h5>
<p class="card-text">4th & Goal is a hardcore band based out of Syracuse, NY, known for their intense performances and powerful music that resonates with fans across the state.</p>
<a href="https://4th.hobokenchicken.com" target="_blank" class="btn btn-primary">Learn More</a>
</div>
</div>
</div>
</div>
</div>
<div class="container mt-4">
<h2>Testimonials</h2>
<div class="row">
<div class="col-md-6">
<div class="card">
<div class="card-body">
<p class="card-text">"D@N Tech exceeded our expectations! Our new website is beautiful and functional."</p>
<p class="card-text">- T, PCW</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card">
<div class="card-body">
<p class="card-text">"The team at D@N Tech is professional and responsive. We highly recommend their services."</p>
<p class="card-text">- MP, 4th</p>
</div>
</div>
</div>
</div>
</div>
<h2>Contact Us</h2>
<p>For inquiries, please email us at <a href="mailto:info@dustin.coffee">info@dustin.coffee</a></p>
<p>View your invoices at <a href="https://invoice.dustin.coffee/client" target="_blank">invoice.dustin.coffee</a></p>
</div>
<footer class="bg-dark text-white text-center py-1 mt-5" style="position: static;">
<p>&copy; <span id="currentYear"></span> D@N Tech. All rights reserved.</p>
<p><a href="tos.php" class="text-white">Terms of Service</a> | <a href="privacy.html" class="text-white">Privacy Policy</a></p>
</footer>
<script>
// Display the current year in the footer
document.getElementById('currentYear').textContent = new Date().getFullYear();
</script>
</div>
</body>
</html>