pawelorzech.github.io/index.html
Paweł Orzech 58096c3fd8 Transform repository into a modern blog website
- Created responsive blog layout with hero section, navigation, and footer
- Implemented modern CSS with gradients, animations, and mobile-first design
- Added interactive JavaScript for mobile menu, smooth scrolling, and scroll effects
- Created blog post structure with sample welcome post
- Added Font Awesome icons and Google Fonts integration
- Implemented modern blog card design with hover effects
- Added about and contact sections for complete blog experience

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-07 22:51:10 +02:00

141 lines
No EOL
6 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pawel Orzech - Blog</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<nav class="navbar">
<div class="nav-container">
<div class="nav-logo">
<h2>Pawel Orzech</h2>
</div>
<ul class="nav-menu">
<li class="nav-item">
<a href="#home" class="nav-link">Home</a>
</li>
<li class="nav-item">
<a href="#blog" class="nav-link">Blog</a>
</li>
<li class="nav-item">
<a href="#about" class="nav-link">About</a>
</li>
<li class="nav-item">
<a href="#contact" class="nav-link">Contact</a>
</li>
</ul>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</div>
</nav>
<main>
<section id="home" class="hero">
<div class="hero-content">
<h1>Welcome to My Blog</h1>
<p class="hero-subtitle">Thoughts, ideas, and stories from my journey</p>
<a href="#blog" class="cta-button">Read My Posts</a>
</div>
<div class="hero-bg"></div>
</section>
<section id="blog" class="blog-section">
<div class="container">
<h2 class="section-title">Latest Posts</h2>
<div class="blog-grid">
<article class="blog-card">
<div class="blog-image">
<div class="placeholder-image">
<i class="fas fa-image"></i>
</div>
</div>
<div class="blog-content">
<div class="blog-meta">
<span class="blog-date">September 7, 2025</span>
<span class="blog-tag">Welcome</span>
</div>
<h3>Welcome to My Blog</h3>
<p>This is my first blog post! I'm excited to share my thoughts and experiences with you.</p>
<a href="posts/welcome.html" class="read-more">Read More</a>
</div>
</article>
<article class="blog-card">
<div class="blog-image">
<div class="placeholder-image">
<i class="fas fa-code"></i>
</div>
</div>
<div class="blog-content">
<div class="blog-meta">
<span class="blog-date">Coming Soon</span>
<span class="blog-tag">Tech</span>
</div>
<h3>My Development Journey</h3>
<p>Exploring the world of software development and sharing insights along the way.</p>
<a href="#" class="read-more disabled">Coming Soon</a>
</div>
</article>
<article class="blog-card">
<div class="blog-image">
<div class="placeholder-image">
<i class="fas fa-lightbulb"></i>
</div>
</div>
<div class="blog-content">
<div class="blog-meta">
<span class="blog-date">Coming Soon</span>
<span class="blog-tag">Ideas</span>
</div>
<h3>Creative Thoughts</h3>
<p>Random thoughts and creative ideas that inspire me in my daily life.</p>
<a href="#" class="read-more disabled">Coming Soon</a>
</div>
</article>
</div>
</div>
</section>
<section id="about" class="about-section">
<div class="container">
<h2 class="section-title">About Me</h2>
<div class="about-content">
<div class="about-text">
<p>Hi! I'm Pawel, and this is my personal blog where I share my thoughts, experiences, and ideas.</p>
<p>Welcome to my corner of the internet. I'm excited to connect with you through my writing.</p>
</div>
<div class="about-links">
<a href="#" class="social-link"><i class="fab fa-github"></i></a>
<a href="#" class="social-link"><i class="fab fa-linkedin"></i></a>
<a href="#" class="social-link"><i class="fab fa-twitter"></i></a>
</div>
</div>
</div>
</section>
<section id="contact" class="contact-section">
<div class="container">
<h2 class="section-title">Get In Touch</h2>
<p class="contact-text">Have something to say? I'd love to hear from you.</p>
<a href="mailto:contact@example.com" class="contact-button">Send Email</a>
</div>
</section>
</main>
<footer class="footer">
<div class="container">
<p>&copy; 2025 Pawel Orzech. All rights reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>