Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Deploy to GitHub Pages

on:
push:
branches:
- main
- master
workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: "pages"
cancel-in-progress: false

jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Pages
uses: actions/configure-pages@v4

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: '.'

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
218 changes: 218 additions & 0 deletions contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,218 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - Seth Reno</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
}

.container {
background: white;
border-radius: 10px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
max-width: 500px;
width: 100%;
padding: 40px;
}

h1 {
color: #333;
margin-bottom: 10px;
font-size: 28px;
}

.subtitle {
color: #666;
margin-bottom: 30px;
font-size: 14px;
}

.form-group {
margin-bottom: 20px;
}

label {
display: block;
color: #333;
font-weight: 600;
margin-bottom: 8px;
font-size: 14px;
}

input,
textarea {
width: 100%;
padding: 12px;
border: 2px solid #e1e1e1;
border-radius: 5px;
font-size: 14px;
transition: border-color 0.3s;
font-family: inherit;
}

input:focus,
textarea:focus {
outline: none;
border-color: #667eea;
}

textarea {
resize: vertical;
min-height: 120px;
}

.btn {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 14px 30px;
border: none;
border-radius: 5px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
width: 100%;
transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
transform: translateY(-2px);
box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.btn:active {
transform: translateY(0);
}

.contact-info {
margin-top: 30px;
padding-top: 30px;
border-top: 2px solid #e1e1e1;
}

.contact-info h2 {
color: #333;
font-size: 18px;
margin-bottom: 15px;
}

.info-item {
display: flex;
align-items: center;
margin-bottom: 12px;
color: #555;
}

.info-item strong {
min-width: 80px;
color: #333;
}

.info-item a {
color: #667eea;
text-decoration: none;
}

.info-item a:hover {
text-decoration: underline;
}

.back-link {
margin-top: 20px;
text-align: center;
}

.back-link a {
color: #667eea;
text-decoration: none;
font-size: 14px;
}

.back-link a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>Get In Touch</h1>
<p class="subtitle">Have a question or want to work together?</p>

<form id="contactForm">
<div class="form-group">
<label for="name">Name *</label>
<input type="text" id="name" name="name" required placeholder="Your name">
</div>

<div class="form-group">
<label for="phone">Phone</label>
<input type="tel" id="phone" name="phone" placeholder="(123) 456-7890">
</div>

<div class="form-group">
<label for="email">Email *</label>
<input type="email" id="email" name="email" required placeholder="your.email@example.com">
</div>

<div class="form-group">
<label for="message">Message</label>
<textarea id="message" name="message" placeholder="Your message here..."></textarea>
</div>

<button type="submit" class="btn">Send Message</button>
</form>

<div class="contact-info">
<h2>Contact Information</h2>
<div class="info-item">
<strong>Name:</strong>
<span>Seth Reno</span>
</div>
<div class="info-item">
<strong>Phone:</strong>
<a href="tel:+18163526684">(816) 352-6684</a>
</div>
<div class="info-item">
<strong>Email:</strong>
<a href="mailto:sethreno@gmail.com">sethreno@gmail.com</a>
</div>
</div>

<div class="back-link">
<a href="index.html">← Back to Home</a>
</div>
</div>

<script>
document.getElementById('contactForm').addEventListener('submit', function(e) {
e.preventDefault();

const name = document.getElementById('name').value;
const phone = document.getElementById('phone').value;
const email = document.getElementById('email').value;
const message = document.getElementById('message').value;

// In a real application, you would send this data to a server
// For now, we'll just show an alert
alert('Thank you for your message, ' + name + '!\n\nThis is a demo form. In a production environment, this would send your message to Seth Reno.');

// Reset form
this.reset();
});
</script>
</body>
</html>
Loading