added files

This commit is contained in:
2025-02-22 17:28:20 -05:00
parent 0235b793e5
commit 88db49dffd
5 changed files with 187 additions and 0 deletions

BIN
README.md

Binary file not shown.

50
index.html Normal file
View File

@@ -0,0 +1,50 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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-3">
<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">Visit my main site</a></p>
</header>
<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>
<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" target="_blank">invoice.dustin.coffee</a></p>
</div>
<footer class="bg-dark text-white text-center py-3 mt-4">
<p>&copy; <span id="currentYear"></span> D@N Tech. All rights reserved.</p>
<p><a href="tos.html" 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>
</body>
</html>

44
privacy.html Normal file
View File

@@ -0,0 +1,44 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container mt-5">
<h1 class="text-center">Privacy Policy</h1>
<p class="mt-4">
Your privacy is important to us. It is our policy to respect your privacy regarding any information we may collect from you across our website, D@N Tech, and other sites we own and operate.
</p>
<h2>1. Information we collect</h2>
<p>
We only collect information about you if we have a reason to do so — for example, to provide our services, to communicate with you, or to make our services better.
</p>
<h2>2. How we use information</h2>
<p>
We use the information we collect in various ways, including to provide, operate, and maintain our website, improve, personalize, and expand our website, understand and analyze how you use our website, develop new products, services, features, and functionality, communicate with you, either directly or through one of our partners, including for customer service, to provide you with updates and other information relating to the website, and for marketing and promotional purposes.
</p>
<h2>3. Sharing information</h2>
<p>
We do not share your personal information with anyone except to comply with the law, develop our products, or protect our rights.
</p>
<h2>4. Security</h2>
<p>
We take the security of your personal information seriously and take reasonable measures to protect it.
</p>
<h2>5. Changes to this policy</h2>
<p>
We may update our Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page.
</p>
<p class="mt-4">
If you have any questions about this Privacy Policy, please contact us.
</p>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.4/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>

41
styles.css Normal file
View File

@@ -0,0 +1,41 @@
:root {
--bs-primary: #3D3300;
--bs-secondary: #F8FDDD;
--bs-success: #4CAF50;
--bs-info: #17A2B8;
--bs-warning: #FFC107;
--bs-danger: #DC3545;
--bs-light: #F8F9FA;
--bs-dark: #343A40;
}
body {
font-family: 'IBM Plex Mono', monospace;
margin: 0;
padding: 0;
background-color: var(--bs-secondary); /* Updated background color */
color: var(--bs-primary); /* Updated text color */
}
header {
background-color: var(--bs-primary); /* Updated background color */
color: var(--bs-secondary); /* Updated text color */
padding: 1rem 0;
text-align: center;
}
.container {
padding: 2rem;
max-width: 800px;
margin: 0 auto;
}
h1, h2 {
color: var(--bs-primary); /* Updated heading color */
}
footer {
background-color: var(--bs-primary); /* Updated background color */
color: var(--bs-secondary); /* Updated text color */
text-align: center;
padding: 1rem 0;
position: fixed;
width: 100%;
bottom: 0;
}

52
tos.php Normal file
View File

@@ -0,0 +1,52 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms of Service</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container mt-5">
<h1 class="text-center">Terms of Service</h1>
<p class="mt-4">Welcome to our website. If you continue to browse and use this website, you are agreeing to comply with and be bound by the following terms and conditions of use, which together with our privacy policy govern D@N Tech's relationship with you in relation to this website. If you disagree with any part of these terms and conditions, please do not use our website.</p>
<h2>1. Terms</h2>
<p>By accessing this website, you are agreeing to be bound by these website Terms and Conditions of Use, all applicable laws and regulations, and agree that you are responsible for compliance with any applicable local laws. If you do not agree with any of these terms, you are prohibited from using or accessing this site.</p>
<h2>2. Use License</h2>
<p>Permission is granted to temporarily download one copy of the materials (information or software) on D@N Tech's website for personal, non-commercial transitory viewing only. This is the grant of a license, not a transfer of title, and under this license you may not:</p>
<ul>
<li>modify or copy the materials;</li>
<li>use the materials for any commercial purpose, or for any public display (commercial or non-commercial);</li>
<li>attempt to decompile or reverse engineer any software contained on D@N Tech's website;</li>
<li>remove any copyright or other proprietary notations from the materials; or</li>
<li>transfer the materials to another person or "mirror" the materials on any other server.</li>
</ul>
<h2>3. Disclaimer</h2>
<p>The materials on D@N Tech's website are provided "as is". D@N Tech makes no warranties, expressed or implied, and hereby disclaims and negates all other warranties, including without limitation, implied warranties or conditions of merchantability, fitness for a particular purpose, or non-infringement of intellectual property or other violation of rights.</p>
<h2>4. Limitations</h2>
<p>In no event shall D@N Tech or its suppliers be liable for any damages (including, without limitation, damages for loss of data or profit, or due to business interruption) arising out of the use or inability to use the materials on D@N Tech's website, even if D@N Tech or a D@N Tech authorized representative has been notified orally or in writing of the possibility of such damage.</p>
<h2>5. Revisions and Errata</h2>
<p>The materials appearing on D@N Tech's website could include technical, typographical, or photographic errors. D@N Tech does not warrant that any of the materials on its website are accurate, complete, or current. D@N Tech may make changes to the materials contained on its website at any time without notice. D@N Tech does not, however, make any commitment to update the materials.</p>
<h2>6. Links</h2>
<p>D@N Tech has not reviewed all of the sites linked to its website and is not responsible for the contents of any such linked site. The inclusion of any link does not imply endorsement by D@N Tech of the site. Use of any such linked website is at the user's own risk.</p>
<h2>7. Site Terms of Use Modifications</h2>
<p>D@N Tech may revise these terms of use for its website at any time without notice. By using this website you are agreeing to be bound by the then current version of these Terms and Conditions of Use.</p>
<h2>8. Governing Law</h2>
<p>Any claim relating to D@N Tech's website shall be governed by the laws of the State without regard to its conflict of law provisions.</p>
<p class="mt-5">These terms and conditions were last updated on <?php echo date('F j, Y'); ?>.</p>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.4/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>