This commit is contained in:
Flatlogic Bot 2025-09-08 19:49:31 +00:00
parent 14c4e1cd90
commit ca7997f37e
6 changed files with 267 additions and 307 deletions

View File

@ -1,147 +1,225 @@
:root { :root {
--primary-color: #00f7ff; --sidebar-bg: #1a1a1a;
--secondary-color: #9400d3; /* Dark Violet for contrast */ --main-bg: #f0f2f5;
--background-color: #020c16; --text-light: #e0e0e0;
--surface-color: #0a192f; --text-dark: #333;
--text-color: #e6f1ff; --primary-color: #007bff;
--glow-color: rgba(0, 247, 255, 0.7); --card-bg: #ffffff;
--glow-color-secondary: rgba(148, 0, 211, 0.7); --shadow: 0 4px 8px rgba(0,0,0,0.1);
} }
.futuristic { body {
font-family: 'Rajdhani', sans-serif; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: var(--background-color); margin: 0;
color: var(--text-color); display: flex;
background-color: var(--main-bg);
color: var(--text-dark);
} }
.navbar { .sidebar {
background-color: rgba(10, 25, 47, 0.85); width: 280px;
backdrop-filter: blur(10px); background-color: var(--sidebar-bg);
border-bottom: 1px solid var(--primary-color); color: var(--text-light);
transition: all 0.3s ease-in-out; position: fixed;
height: 100%;
padding: 30px;
display: flex;
flex-direction: column;
align-items: center;
} }
.navbar .navbar-brand, .navbar .nav-link { .profile-pic {
color: var(--text-color); width: 120px;
text-shadow: 0 0 5px var(--glow-color); height: 120px;
transition: color 0.3s, text-shadow 0.3s; border-radius: 50%;
border: 3px solid var(--primary-color);
} }
.navbar .nav-link:hover, .navbar .navbar-brand:hover { .sidebar h3 {
color: #fff;
margin-top: 15px;
margin-bottom: 5px;
}
.sidebar .nav-link {
color: var(--text-light);
margin: 10px 0;
font-size: 1.1rem;
transition: color 0.3s;
}
.sidebar .nav-link i {
margin-right: 15px;
width: 20px;
text-align: center;
}
.sidebar .nav-link:hover,
.sidebar .nav-link.active {
color: var(--primary-color); color: var(--primary-color);
text-shadow: 0 0 15px var(--glow-color);
} }
.hero { .social-icons {
background: linear-gradient(rgba(2, 12, 22, 0.7), rgba(2, 12, 22, 1)), url('https://picsum.photos/1600/900?grayscale&blur=2'); margin-top: auto;
background-size: cover; text-align: center;
background-position: center;
color: white;
padding: 12rem 0 8rem 0;
border-bottom: 1px solid var(--primary-color);
} }
.hero h1 { .social-icons a {
color: var(--text-light);
margin: 0 10px;
font-size: 1.2rem;
transition: color 0.3s;
}
.social-icons a:hover {
color: var(--primary-color);
}
.main-content {
margin-left: 280px;
padding: 40px;
width: calc(100% - 280px);
}
.content-section {
padding: 60px 0;
border-bottom: 1px solid #ddd;
}
.hero-section {
text-align: center;
padding: 100px 0;
}
.hero-section h1 {
font-size: 3rem;
font-weight: 700; font-weight: 700;
text-shadow: 0 0 15px var(--glow-color);
} }
.section { .hero-section p {
padding: 5rem 0; font-size: 1.2rem;
background-color: var(--background-color); color: #666;
} }
.section h2 { h2 {
font-weight: 600; font-weight: 700;
color: var(--primary-color); margin-bottom: 40px;
text-shadow: 0 0 10px var(--glow-color); text-align: center;
margin-bottom: 3rem !important; position: relative;
}
h2::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 3px;
background-color: var(--primary-color);
} }
.card { .card {
background-color: var(--surface-color); border: none;
border: 1px solid var(--primary-color); border-radius: 10px;
box-shadow: 0 0 15px var(--glow-color); box-shadow: var(--shadow);
transition: transform 0.3s, box-shadow 0.3s; transition: transform 0.3s, box-shadow 0.3s;
color: var(--text-color); background-color: var(--card-bg);
text-align: center;
} }
.card:hover { .card:hover {
transform: translateY(-10px); transform: translateY(-10px);
box-shadow: 0 0 30px var(--glow-color); box-shadow: 0 8px 16px rgba(0,0,0,0.2);
} }
.card-title { .card .card-body {
padding: 30px;
}
.card i {
color: var(--primary-color); color: var(--primary-color);
font-weight: 600;
} }
.btn-primary { .project-card img {
background-color: transparent; border-top-left-radius: 10px;
border: 2px solid var(--primary-color); border-top-right-radius: 10px;
color: var(--primary-color);
font-weight: 600;
transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}
.btn-primary:hover {
background-color: var(--primary-color);
color: var(--background-color);
box-shadow: 0 0 20px var(--glow-color);
}
.btn-secondary {
background-color: transparent;
border: 2px solid var(--secondary-color);
color: var(--secondary-color);
font-weight: 600;
transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}
.btn-secondary:hover {
background-color: var(--secondary-color);
color: white;
box-shadow: 0 0 20px var(--glow-color-secondary);
}
#services h4 {
color: var(--primary-color);
font-weight: 600;
}
#about .img-fluid {
border: 3px solid var(--primary-color);
box-shadow: 0 0 25px var(--glow-color);
} }
.form-control { .form-control {
background-color: var(--surface-color); border-radius: 5px;
border: 1px solid var(--primary-color); padding: 12px;
color: var(--text-color);
} }
.form-control:focus { .btn-primary {
background-color: var(--surface-color); background-color: var(--primary-color);
border-color: var(--primary-color); border-color: var(--primary-color);
color: var(--text-color); border-radius: 50px;
box-shadow: 0 0 15px var(--glow-color); padding: 12px 30px;
font-weight: 600;
transition: background-color 0.3s;
} }
.form-label { .btn-primary:hover {
color: var(--primary-color); background-color: #0056b3;
border-color: #0056b3;
} }
footer { footer {
background-color: var(--surface-color) !important; padding: 20px 0;
border-top: 1px solid var(--primary-color); color: #777;
} }
footer a { /* Responsive */
text-shadow: 0 0 5px var(--glow-color); @media (max-width: 992px) {
transition: color 0.3s, text-shadow 0.3s; .sidebar {
width: 100%;
height: auto;
position: relative;
flex-direction: row;
justify-content: space-between;
padding: 15px;
}
.sidebar .profile-pic {
width: 60px;
height: 60px;
}
.sidebar h3, .sidebar .text-muted {
display: none;
}
.sidebar .nav {
flex-direction: row;
}
.sidebar .nav-link {
margin: 0 5px;
font-size: 1rem;
}
.sidebar .nav-link i {
margin-right: 5px;
}
.social-icons {
margin-top: 0;
}
.main-content {
margin-left: 0;
width: 100%;
padding: 20px;
}
} }
footer a:hover { @media (max-width: 768px) {
color: var(--primary-color) !important; .sidebar {
text-shadow: 0 0 15px var(--glow-color); flex-direction: column;
align-items: center;
}
.sidebar .nav {
margin-top: 15px;
}
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 1018 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 428 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 428 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 428 KiB

298
index.php
View File

@ -3,241 +3,123 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alex Rubanau - Software Engineer</title> <title>John Doe - Portfolio</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link rel="stylesheet" href="assets/css/custom.css?v=2">
<link href="https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/custom.css">
</head> </head>
<body class="futuristic"> <body>
<!-- Navbar --> <div class="sidebar">
<nav class="navbar navbar-expand-lg navbar-dark fixed-top"> <div class="text-center mb-5">
<div class="container"> <img src="https://i.imgur.com/your-profile-pic.jpg" alt="John Doe" class="profile-pic">
<a class="navbar-brand" href="#">Alex Rubanau</a> <h3 class="mt-3">John Doe</h3>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation"> <p class="text-muted">Web Developer</p>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link" href="#work">Work</a></li>
<li class="nav-item"><a class="nav-link" href="#services">Services</a></li>
<li class="nav-item"><a class="nav-link" href="#about">About</a></li>
<li class="nav-item"><a class="nav-link" href="#contact">Contact</a></li>
</ul>
</div>
</div> </div>
</nav> <nav class="nav flex-column">
<a class="nav-link active" href="#home"><i class="fas fa-home"></i> Home</a>
<!-- Hero Section --> <a class="nav-link" href="#about"><i class="fas fa-user"></i> About</a>
<header class="hero text-center"> <a class="nav-link" href="#services"><i class="fas fa-concierge-bell"></i> Services</a>
<div class="container"> <a class="nav-link" href="#work"><i class="fas fa-briefcase"></i> My Work</a>
<h1 class="display-4">Alex Rubanau: Software Engineer</h1> <a class="nav-link" href="#contact"><i class="fas fa-envelope"></i> Contact</a>
<p class="lead">Crafting elegant and efficient solutions for the web.</p> </nav>
<a href="#contact" class="btn btn-primary btn-lg">Contact Me</a> <div class="social-icons mt-5">
<a href="#work" class="btn btn-secondary btn-lg">View My Work</a> <a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
<a href="#"><i class="fab fa-github"></i></a>
</div> </div>
</header> </div>
<main> <div class="main-content">
<!-- Work Gallery --> <section id="home" class="hero-section text-center">
<section id="work" class="section"> <h1>Welcome to My Portfolio</h1>
<div class="container"> <p>I create modern and responsive web applications.</p>
<h2 class="text-center mb-5">My Work</h2> <a href="#contact" class="btn btn-primary">Get in Touch</a>
<div class="row"> </section>
<!-- Project 1 -->
<div class="col-md-4 mb-4"> <section id="about" class="content-section">
<div class="card"> <h2>About Me</h2>
<img src="https://picsum.photos/600/400?random=1" class="card-img-top" alt="Placeholder image for a software project."> <p>Hello! I'm John Doe, a passionate web developer with a knack for creating elegant and efficient solutions. I have a strong background in front-end and back-end technologies, and I love bringing ideas to life in the browser.</p>
<div class="card-body"> </section>
<h5 class="card-title">Project One</h5>
<p class="card-text">A brief description of the project, its goals, and the technologies used.</p> <section id="services" class="content-section">
</div> <h2>Services</h2>
<div class="row">
<div class="col-md-4">
<div class="card">
<div class="card-body">
<i class="fas fa-laptop-code fa-2x"></i>
<h5 class="card-title mt-3">Web Development</h5>
<p class="card-text">Full-stack development of web applications.</p>
</div> </div>
</div> </div>
<!-- Project 2 --> </div>
<div class="col-md-4 mb-4"> <div class="col-md-4">
<div class="card"> <div class="card">
<img src="https://picsum.photos/600/400?random=2" class="card-img-top" alt="Placeholder image for a software project."> <div class="card-body">
<div class="card-body"> <i class="fas fa-mobile-alt fa-2x"></i>
<h5 class="card-title">Project Two</h5> <h5 class="card-title mt-3">Responsive Design</h5>
<p class="card-text">A brief description of the project, its goals, and the technologies used.</p> <p class="card-text">Websites that work on all devices.</p>
</div>
</div> </div>
</div> </div>
<!-- Project 3 --> </div>
<div class="col-md-4 mb-4"> <div class="col-md-4">
<div class="card"> <div class="card">
<img src="https://picsum.photos/600/400?random=3" class="card-img-top" alt="Placeholder image for a software project."> <div class="card-body">
<div class="card-body"> <i class="fas fa-palette fa-2x"></i>
<h5 class="card-title">Project Three</h5> <h5 class="card-title mt-3">UI/UX Design</h5>
<p class="card-text">A brief description of the project, its goals, and the technologies used.</p> <p class="card-text">Intuitive and beautiful user interfaces.</p>
</div>
</div>
</div>
<!-- Project 4 -->
<div class="col-md-4 mb-4">
<div class="card">
<img src="https://picsum.photos/600/400?random=4" class="card-img-top" alt="Placeholder image for a software project.">
<div class="card-body">
<h5 class="card-title">Project Four</h5>
<p class="card-text">A brief description of the project, its goals, and the technologies used.</p>
</div>
</div>
</div>
<!-- Project 5 -->
<div class="col-md-4 mb-4">
<div class="card">
<img src="https://picsum.photos/600/400?random=5" class="card-img-top" alt="Placeholder image for a software project.">
<div class="card-body">
<h5 class="card-title">Project Five</h5>
<p class="card-text">A brief description of the project, its goals, and the technologies used.</p>
</div>
</div>
</div>
<!-- Project 6 -->
<div class="col-md-4 mb-4">
<div class="card">
<img src="https://picsum.photos/600/400?random=6" class="card-img-top" alt="Placeholder image for a software project.">
<div class="card-body">
<h5 class="card-title">Project Six</h5>
<p class="card-text">A brief description of the project, its goals, and the technologies used.</p>
</div>
</div> </div>
</div> </div>
</div> </div>
</div> </div>
</section> </section>
<!-- Services --> <section id="work" class="content-section">
<section id="services" class="section bg-light"> <h2>My Work</h2>
<div class="container"> <div class="row">
<h2 class="text-center mb-5">Services</h2> <div class="col-md-6 mb-4">
<div class="row text-center"> <div class="card project-card">
<div class="col-md-4"> <img src="https://i.imgur.com/project-1.jpg" class="card-img-top" alt="Project 1">
<h4>Web Development</h4> <div class="card-body">
<p>Building responsive and performant websites and web applications from the ground up.</p> <h5 class="card-title">Project One</h5>
</div> <p class="card-text">A description of the first project.</p>
<div class="col-md-4"> </div>
<h4>UI/UX Design</h4>
<p>Designing intuitive and beautiful user interfaces that are a joy to use.</p>
</div>
<div class="col-md-4">
<h4>Cloud Solutions</h4>
<p>Leveraging cloud platforms to build scalable and reliable infrastructure.</p>
</div> </div>
</div> </div>
</div> <div class="col-md-6 mb-4">
</section> <div class="card project-card">
<img src="https://i.imgur.com/project-2.jpg" class="card-img-top" alt="Project 2">
<!-- Testimonials --> <div class="card-body">
<section id="testimonials" class="section"> <h5 class="card-title">Project Two</h5>
<div class="container"> <p class="card-text">A description of the second project.</p>
<h2 class="text-center mb-5">What Clients Say</h2>
<div class="row">
<div class="col-md-4 mb-4">
<div class="card">
<div class="card-body">
<p class="card-text">"Alex is a fantastic engineer who delivers high-quality work on time."</p>
<div class="d-flex align-items-center">
<img src="https://picsum.photos/96/96?random=7" class="rounded-circle me-3" alt="Avatar of a client.">
<div>
<strong>Client One</strong><br>
<small>CEO, Company A</small>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card">
<div class="card-body">
<p class="card-text">"The attention to detail and commitment to excellence is truly impressive."</p>
<div class="d-flex align-items-center">
<img src="https://picsum.photos/96/96?random=8" class="rounded-circle me-3" alt="Avatar of a client.">
<div>
<strong>Client Two</strong><br>
<small>CTO, Company B</small>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card">
<div class="card-body">
<p class="card-text">"A pleasure to work with. Highly recommended for any web project."</p>
<div class="d-flex align-items-center">
<img src="https://picsum.photos/96/96?random=9" class="rounded-circle me-3" alt="Avatar of a client.">
<div>
<strong>Client Three</strong><br>
<small>Lead Designer, Company C</small>
</div>
</div>
</div>
</div> </div>
</div> </div>
</div> </div>
</div> </div>
</section> </section>
<!-- About Section --> <section id="contact" class="content-section">
<section id="about" class="section bg-light"> <h2>Contact Me</h2>
<div class="container"> <form>
<div class="row align-items-center"> <div class="mb-3">
<div class="col-md-4 text-center"> <input type="text" class="form-control" placeholder="Your Name">
<img src="https://picsum.photos/256/256" class="img-fluid rounded-circle mb-4" alt="Professional headshot of Alex Rubanau.">
</div>
<div class="col-md-8">
<h2 class="mb-4">About Me</h2>
<p>I am a passionate software engineer with a focus on creating beautiful and functional web applications. With a background in computer science and several years of experience in the industry, I have a proven track record of delivering high-quality products that meet user needs and business goals.</p>
<p>My expertise spans the full stack, from crafting pixel-perfect user interfaces to designing robust backend systems. I am always eager to learn new technologies and take on challenging projects.</p>
</div>
</div> </div>
</div> <div class="mb-3">
<input type="email" class="form-control" placeholder="Your Email">
</div>
<div class="mb-3">
<textarea class="form-control" rows="5" placeholder="Your Message"></textarea>
</div>
<button type="submit" class="btn btn-primary">Send Message</button>
</form>
</section> </section>
<!-- Contact Form --> <footer class="text-center mt-5">
<section id="contact" class="section"> <p>&copy; 2025 John Doe. All Rights Reserved.</p>
<div class="container"> </footer>
<h2 class="text-center mb-5">Get In Touch</h2> </div>
<div class="row justify-content-center">
<div class="col-md-8">
<form id="contactForm" class="needs-validation" novalidate>
<div class="mb-3">
<label for="name" class="form-label">Name</label>
<input type="text" class="form-control" id="name" required>
<div class="invalid-feedback">Please enter your name.</div>
</div>
<div class="mb-3">
<label for="email" class="form-label">Email</label>
<input type="email" class="form-control" id="email" required>
<div class="invalid-feedback">Please enter a valid email address.</div>
</div>
<div class="mb-3">
<label for="message" class="form-label">Message</label>
<textarea class="form-control" id="message" rows="5" required></textarea>
<div class="invalid-feedback">Please enter a message.</div>
</div>
<button type="submit" class="btn btn-primary">Send Message</button>
</form>
</div>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="bg-dark text-white text-center py-4">
<div class="container">
<p class="mb-0">&copy; 2025 Alex Rubanau. All Rights Reserved.</p>
<a href="#" class="text-white">GitHub</a> |
<a href="#" class="text-white">LinkedIn</a>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/main.js"></script>
</body> </body>
</html> </html>