Leman99
This commit is contained in:
parent
b21fdcade3
commit
cce98cb3ff
118
assets/css/custom.css
Normal file
118
assets/css/custom.css
Normal file
@ -0,0 +1,118 @@
|
||||
/*
|
||||
Palette:
|
||||
- Primary: #6C63FF
|
||||
- Secondary: #FF6584
|
||||
- Background: #F8F9FA
|
||||
- Surface: #FFFFFF
|
||||
- Text: #212529
|
||||
*/
|
||||
|
||||
body {
|
||||
font-family: 'Poppins', sans-serif;
|
||||
background-color: #F8F9FA;
|
||||
color: #212529;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
font-weight: 600;
|
||||
color: #343a40;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
|
||||
.hero {
|
||||
background: url('https://picsum.photos/seed/hero/1200/800') no-repeat center center;
|
||||
background-size: cover;
|
||||
color: white;
|
||||
padding: 10rem 0;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.hero::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.hero .container {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background-color: #6C63FF;
|
||||
border-color: #6C63FF;
|
||||
border-radius: .5rem;
|
||||
padding: 0.75rem 1.5rem;
|
||||
font-weight: 600;
|
||||
transition: background-color 0.3s ease;
|
||||
}
|
||||
|
||||
.btn-primary:hover {
|
||||
background-color: #574fd8;
|
||||
border-color: #574fd8;
|
||||
}
|
||||
|
||||
.btn-secondary {
|
||||
background-color: #FF6584;
|
||||
border-color: #FF6584;
|
||||
color: white;
|
||||
border-radius: .5rem;
|
||||
padding: 0.75rem 1.5rem;
|
||||
font-weight: 600;
|
||||
transition: background-color 0.3s ease;
|
||||
}
|
||||
|
||||
.btn-secondary:hover {
|
||||
background-color: #f85173;
|
||||
border-color: #f85173;
|
||||
}
|
||||
|
||||
section {
|
||||
padding: 5rem 0;
|
||||
}
|
||||
|
||||
.section-bg {
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
|
||||
.card {
|
||||
border: none;
|
||||
border-radius: .5rem;
|
||||
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.card:hover {
|
||||
transform: translateY(-5px);
|
||||
}
|
||||
|
||||
.testimonial-card {
|
||||
background-color: #6C63FF;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.testimonial-card .card-body {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
footer {
|
||||
background-color: #343a40;
|
||||
color: white;
|
||||
padding: 3rem 0;
|
||||
}
|
||||
|
||||
footer a {
|
||||
color: #FF6584;
|
||||
}
|
||||
|
||||
footer a:hover {
|
||||
color: #f85173;
|
||||
}
|
||||
12
assets/js/main.js
Normal file
12
assets/js/main.js
Normal file
@ -0,0 +1,12 @@
|
||||
document.addEventListener('DOMContentLoaded', function () {
|
||||
// Smooth scrolling for anchor links
|
||||
document.querySelectorAll('a.nav-link[href^="#"]').forEach(anchor => {
|
||||
anchor.addEventListener('click', function (e) {
|
||||
e.preventDefault();
|
||||
|
||||
document.querySelector(this.getAttribute('href')).scrollIntoView({
|
||||
behavior: 'smooth'
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
325
index.php
325
index.php
@ -1,131 +1,204 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
@ini_set('display_errors', '1');
|
||||
@error_reporting(E_ALL);
|
||||
@date_default_timezone_set('UTC');
|
||||
|
||||
$phpVersion = PHP_VERSION;
|
||||
$now = date('Y-m-d H:i:s');
|
||||
?>
|
||||
<!doctype html>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>New Style</title>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
:root {
|
||||
--bg-color-start: #6a11cb;
|
||||
--bg-color-end: #2575fc;
|
||||
--text-color: #ffffff;
|
||||
--card-bg-color: rgba(255, 255, 255, 0.01);
|
||||
--card-border-color: rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: 'Inter', sans-serif;
|
||||
background: linear-gradient(45deg, var(--bg-color-start), var(--bg-color-end));
|
||||
color: var(--text-color);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
min-height: 100vh;
|
||||
text-align: center;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
}
|
||||
body::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M-10 10L110 10M10 -10L10 110" stroke-width="1" stroke="rgba(255,255,255,0.05)"/></svg>');
|
||||
animation: bg-pan 20s linear infinite;
|
||||
z-index: -1;
|
||||
}
|
||||
@keyframes bg-pan {
|
||||
0% { background-position: 0% 0%; }
|
||||
100% { background-position: 100% 100%; }
|
||||
}
|
||||
main {
|
||||
padding: 2rem;
|
||||
}
|
||||
.card {
|
||||
background: var(--card-bg-color);
|
||||
border: 1px solid var(--card-border-color);
|
||||
border-radius: 16px;
|
||||
padding: 2rem;
|
||||
backdrop-filter: blur(20px);
|
||||
-webkit-backdrop-filter: blur(20px);
|
||||
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
.loader {
|
||||
margin: 1.25rem auto 1.25rem;
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
border: 3px solid rgba(255, 255, 255, 0.25);
|
||||
border-top-color: #fff;
|
||||
border-radius: 50%;
|
||||
animation: spin 1s linear infinite;
|
||||
}
|
||||
@keyframes spin {
|
||||
from { transform: rotate(0deg); }
|
||||
to { transform: rotate(360deg); }
|
||||
}
|
||||
.hint {
|
||||
opacity: 0.9;
|
||||
}
|
||||
.sr-only {
|
||||
position: absolute;
|
||||
width: 1px; height: 1px;
|
||||
padding: 0; margin: -1px;
|
||||
overflow: hidden;
|
||||
clip: rect(0, 0, 0, 0);
|
||||
white-space: nowrap; border: 0;
|
||||
}
|
||||
h1 {
|
||||
font-size: 3rem;
|
||||
font-weight: 700;
|
||||
margin: 0 0 1rem;
|
||||
letter-spacing: -1px;
|
||||
}
|
||||
p {
|
||||
margin: 0.5rem 0;
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
code {
|
||||
background: rgba(0,0,0,0.2);
|
||||
padding: 2px 6px;
|
||||
border-radius: 4px;
|
||||
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
|
||||
}
|
||||
footer {
|
||||
position: absolute;
|
||||
bottom: 1rem;
|
||||
font-size: 0.8rem;
|
||||
opacity: 0.7;
|
||||
}
|
||||
</style>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<!-- SEO -->
|
||||
<title>Leman99 - Personal Landing Page</title>
|
||||
<meta name="description" content="Welcome to the personal landing page of Leman99. Showcasing projects, skills, and experience.">
|
||||
<meta name="author" content="Leman99">
|
||||
|
||||
<!-- Open Graph -->
|
||||
<meta property="og:title" content="Leman99 - Personal Landing Page">
|
||||
<meta property="og:description" content="Welcome to the personal landing page of Leman99.">
|
||||
<meta property="og:image" content="https://picsum.photos/seed/hero/1200/630">
|
||||
<meta property="og:url" content="">
|
||||
<meta property="og:type" content="website">
|
||||
|
||||
<!-- Twitter Card -->
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Leman99 - Personal Landing Page">
|
||||
<meta name="twitter:description" content="Welcome to the personal landing page of Leman99.">
|
||||
<meta name="twitter:image" content="https://picsum.photos/seed/hero/1200/630">
|
||||
|
||||
<!-- Favicon -->
|
||||
<!-- <link rel="icon" href="favicon.ico" type="image/x-icon"> -->
|
||||
|
||||
<!-- Stylesheets -->
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
||||
</head>
|
||||
<body>
|
||||
<main>
|
||||
<div class="card">
|
||||
<h1>Analyzing your requirements and generating your website…</h1>
|
||||
<div class="loader" role="status" aria-live="polite" aria-label="Applying initial changes">
|
||||
<span class="sr-only">Loading…</span>
|
||||
</div>
|
||||
<p class="hint"><?= ($_SERVER['HTTP_HOST'] ?? '') === 'appwizzy.com' ? 'AppWiZZy' : 'Flatlogic' ?> AI is collecting your requirements and applying the first changes.</p>
|
||||
<p class="hint">This page will update automatically as the plan is implemented.</p>
|
||||
<p>Runtime: PHP <code><?= htmlspecialchars($phpVersion) ?></code> — UTC <code><?= htmlspecialchars($now) ?></code></p>
|
||||
</div>
|
||||
</main>
|
||||
<footer>
|
||||
Page updated: <?= htmlspecialchars($now) ?> (UTC)
|
||||
</footer>
|
||||
|
||||
<!-- Navbar -->
|
||||
<nav class="navbar navbar-expand-lg navbar-light bg-white fixed-top">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" href="#" style="color: #6C63FF; font-weight: 600;">Leman99</a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<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="#about">About</a></li>
|
||||
<li class="nav-item"><a class="nav-link" href="#portfolio">Portfolio</a></li>
|
||||
<li class="nav-item"><a class="nav-link" href="#testimonials">Testimonials</a></li>
|
||||
<li class="nav-item"><a class="nav-link" href="#contact">Contact</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<!-- Hero Section -->
|
||||
<header id="hero" class="hero">
|
||||
<div class="container">
|
||||
<h1 class="display-4 fw-bold">Welcome to My World</h1>
|
||||
<p class="lead my-4">A passionate developer creating modern and responsive web applications.</p>
|
||||
<a href="#portfolio" class="btn btn-primary btn-lg">View My Work</a>
|
||||
<a href="#contact" class="btn btn-secondary btn-lg ms-2">Get In Touch</a>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<!-- About Section -->
|
||||
<section id="about">
|
||||
<div class="container">
|
||||
<div class="row align-items-center">
|
||||
<div class="col-lg-6">
|
||||
<img src="https://picsum.photos/seed/about/600/600" alt="A portrait of the site owner" class="img-fluid rounded-circle shadow">
|
||||
</div>
|
||||
<div class="col-lg-6 mt-4 mt-lg-0">
|
||||
<h2 class="mb-4">About Me</h2>
|
||||
<p>Hello! I'm Leman99, a software developer with a passion for building beautiful and functional websites. I have experience in front-end and back-end technologies, and I'm always eager to learn new things.</p>
|
||||
<p>This is a placeholder text. You can replace it with your own biography, skills, and experiences to let visitors know more about you.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Portfolio Section -->
|
||||
<section id="portfolio" class="section-bg">
|
||||
<div class="container">
|
||||
<div class="text-center mb-5">
|
||||
<h2>My Portfolio</h2>
|
||||
<p>A selection of my recent projects.</p>
|
||||
</div>
|
||||
<div class="row">
|
||||
<!-- Project 1 -->
|
||||
<div class="col-md-4 mb-4">
|
||||
<div class="card">
|
||||
<img src="https://picsum.photos/seed/portfolio1/800/600" class="card-img-top" alt="Screenshot of a featured portfolio project.">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">Project One</h5>
|
||||
<p class="card-text">A brief description of the project, the technologies used, and its purpose.</p>
|
||||
<a href="#" class="btn btn-sm btn-primary">View Details</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Project 2 -->
|
||||
<div class="col-md-4 mb-4">
|
||||
<div class="card">
|
||||
<img src="https://picsum.photos/seed/portfolio2/800/600" class="card-img-top" alt="Screenshot of another portfolio project.">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">Project Two</h5>
|
||||
<p class="card-text">A brief description of the project, the technologies used, and its purpose.</p>
|
||||
<a href="#" class="btn btn-sm btn-primary">View Details</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Project 3 -->
|
||||
<div class="col-md-4 mb-4">
|
||||
<div class="card">
|
||||
<img src="https://picsum.photos/seed/portfolio3/800/600" class="card-img-top" alt="Screenshot of a third portfolio project.">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">Project Three</h5>
|
||||
<p class="card-text">A brief description of the project, the technologies used, and its purpose.</p>
|
||||
<a href="#" class="btn btn-sm btn-primary">View Details</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Testimonials Section -->
|
||||
<section id="testimonials">
|
||||
<div class="container">
|
||||
<div class="text-center mb-5">
|
||||
<h2>What People Say</h2>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-6 col-lg-4 mb-4">
|
||||
<div class="card testimonial-card">
|
||||
<div class="card-body">
|
||||
<p>"Working with Leman99 was a fantastic experience. The final product exceeded all expectations."</p>
|
||||
<footer class="blockquote-footer text-white-50 mt-3">Client A</footer>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-4 mb-4">
|
||||
<div class="card testimonial-card">
|
||||
<div class="card-body">
|
||||
<p>"Professional, responsive, and incredibly talented. Highly recommended for any web development needs."</p>
|
||||
<footer class="blockquote-footer text-white-50 mt-3">Client B</footer>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-4 mb-4 d-md-none d-lg-block">
|
||||
<div class="card testimonial-card">
|
||||
<div class="card-body">
|
||||
<p>"The attention to detail and commitment to quality is what sets Leman99 apart."</p>
|
||||
<footer class="blockquote-footer text-white-50 mt-3">Client C</footer>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Contact Section -->
|
||||
<section id="contact" class="section-bg">
|
||||
<div class="container">
|
||||
<div class="text-center mb-5">
|
||||
<h2>Get In Touch</h2>
|
||||
<p>Have a question or want to work together? Leave a message.</p>
|
||||
</div>
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-lg-8">
|
||||
<form>
|
||||
<div class="mb-3">
|
||||
<input type="text" class="form-control" placeholder="Your Name" required>
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<input type="email" class="form-control" placeholder="Your Email" required>
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<textarea class="form-control" rows="5" placeholder="Your Message" required></textarea>
|
||||
</div>
|
||||
<div class="text-center">
|
||||
<button type="submit" class="btn btn-primary">Send Message</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<!-- Footer -->
|
||||
<footer>
|
||||
<div class="container text-center">
|
||||
<p class="mb-2">© <?php echo date("Y"); ?> Leman99. All Rights Reserved.</p>
|
||||
<p><a href="privacy.php">Privacy Policy</a></p>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<!-- Scripts -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
||||
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
52
privacy.php
Normal file
52
privacy.php
Normal file
@ -0,0 +1,52 @@
|
||||
<?php
|
||||
?><!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Privacy Policy - Leman99</title>
|
||||
<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="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<nav class="navbar navbar-expand-lg navbar-light bg-white fixed-top">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" href="index.php" style="color: #6C63FF; font-weight: 600;">Leman99</a>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<main class="container" style="padding-top: 8rem;">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<h1>Privacy Policy</h1>
|
||||
<p><em>Last updated: <?php echo date('F j, Y'); ?></em></p>
|
||||
<p>This is a placeholder for your privacy policy. You should replace this with your own policy.</p>
|
||||
<p>We respect your privacy and are committed to protecting it. This Privacy Policy explains our policies and practices regarding the information we collect from you.</p>
|
||||
|
||||
<h2>1. Information We Collect</h2>
|
||||
<p>We may collect personally identifiable information from you in a variety of ways, including, but not limited to, when you visit our site, fill out a form, and in connection with other activities, services, features or resources we make available on our Site.</p>
|
||||
|
||||
<h2>2. How We Use Collected Information</h2>
|
||||
<p>We may collect and use your personal information for the following purposes: to improve customer service, to personalize user experience, and to send periodic emails.</p>
|
||||
|
||||
<h2>3. Your Acceptance of These Terms</h2>
|
||||
<p>By using this Site, you signify your acceptance of this policy. If you do not agree to this policy, please do not use our Site.</p>
|
||||
|
||||
<a href="index.php" class="btn btn-primary mt-4">Back to Home</a>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<footer class="mt-5">
|
||||
<div class="container text-center">
|
||||
<p>© <?php echo date("Y"); ?> Leman99. All Rights Reserved.</p>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
x
Reference in New Issue
Block a user