2nd
This commit is contained in:
parent
dde5968ba2
commit
f4e8f20164
107
assets/css/custom.css
Normal file
107
assets/css/custom.css
Normal file
@ -0,0 +1,107 @@
|
|||||||
|
/* custom.css */
|
||||||
|
:root {
|
||||||
|
--primary-color: #007BFF;
|
||||||
|
--secondary-color: #6C757D;
|
||||||
|
--light-bg: #FFFFFF;
|
||||||
|
--light-surface: #F8F9FA;
|
||||||
|
--light-text: #212529;
|
||||||
|
--dark-bg: #0a192f;
|
||||||
|
--dark-surface: #172a45;
|
||||||
|
--dark-text: #E0E0E0;
|
||||||
|
--accent-gradient: linear-gradient(45deg, #007BFF, #00C6FF);
|
||||||
|
--border-radius-sm: 0.25rem;
|
||||||
|
--border-radius-md: 0.5rem;
|
||||||
|
--border-radius-lg: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: 'Roboto', sans-serif;
|
||||||
|
background-color: var(--light-bg);
|
||||||
|
color: var(--light-text);
|
||||||
|
transition: background-color 0.3s ease, color 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.dark-mode {
|
||||||
|
background-color: var(--dark-bg);
|
||||||
|
color: var(--dark-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, h2, h3, h4, h5, h6 {
|
||||||
|
font-family: 'Poppins', sans-serif;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar {
|
||||||
|
transition: background-color 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.dark-mode .navbar {
|
||||||
|
background-color: var(--dark-surface) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hero {
|
||||||
|
padding: 6rem 0;
|
||||||
|
background: var(--accent-gradient);
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-primary {
|
||||||
|
background: var(--accent-gradient);
|
||||||
|
border: none;
|
||||||
|
padding: 0.75rem 1.5rem;
|
||||||
|
border-radius: var(--border-radius-lg);
|
||||||
|
font-weight: 600;
|
||||||
|
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-primary:hover {
|
||||||
|
transform: translateY(-2px);
|
||||||
|
box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.section {
|
||||||
|
padding: 4rem 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.floating-card {
|
||||||
|
background-color: var(--light-surface);
|
||||||
|
border: none;
|
||||||
|
border-radius: var(--border-radius-lg);
|
||||||
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
|
||||||
|
transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
|
||||||
|
opacity: 0;
|
||||||
|
transform: translateY(30px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.floating-card.is-visible {
|
||||||
|
opacity: 1;
|
||||||
|
transform: translateY(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
.floating-card:hover {
|
||||||
|
transform: translateY(-10px);
|
||||||
|
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
body.dark-mode .floating-card {
|
||||||
|
background-color: var(--dark-surface);
|
||||||
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
|
||||||
|
}
|
||||||
|
|
||||||
|
body.dark-mode .floating-card:hover {
|
||||||
|
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-toggle {
|
||||||
|
cursor: pointer;
|
||||||
|
font-size: 1.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
background-color: var(--light-surface);
|
||||||
|
transition: background-color 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.dark-mode footer {
|
||||||
|
background-color: var(--dark-surface);
|
||||||
|
}
|
||||||
51
assets/js/main.js
Normal file
51
assets/js/main.js
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
// main.js
|
||||||
|
document.addEventListener('DOMContentLoaded', () => {
|
||||||
|
const themeToggle = document.getElementById('theme-toggle');
|
||||||
|
const currentTheme = localStorage.getItem('theme');
|
||||||
|
|
||||||
|
if (currentTheme === 'dark') {
|
||||||
|
document.body.classList.add('dark-mode');
|
||||||
|
themeToggle.innerHTML = '<i class="bi bi-sun-fill"></i>';
|
||||||
|
} else {
|
||||||
|
themeToggle.innerHTML = '<i class="bi bi-moon-fill"></i>';
|
||||||
|
}
|
||||||
|
|
||||||
|
themeToggle.addEventListener('click', () => {
|
||||||
|
document.body.classList.toggle('dark-mode');
|
||||||
|
let theme = 'light';
|
||||||
|
if (document.body.classList.contains('dark-mode')) {
|
||||||
|
theme = 'dark';
|
||||||
|
themeToggle.innerHTML = '<i class="bi bi-sun-fill"></i>';
|
||||||
|
} else {
|
||||||
|
themeToggle.innerHTML = '<i class="bi bi-moon-fill"></i>';
|
||||||
|
}
|
||||||
|
localStorage.setItem('theme', theme);
|
||||||
|
});
|
||||||
|
|
||||||
|
const animatedElements = document.querySelectorAll('.floating-card');
|
||||||
|
const observer = new IntersectionObserver((entries) => {
|
||||||
|
entries.forEach(entry => {
|
||||||
|
if (entry.isIntersecting) {
|
||||||
|
entry.target.classList.add('is-visible');
|
||||||
|
observer.unobserve(entry.target);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}, { threshold: 0.1 });
|
||||||
|
|
||||||
|
animatedElements.forEach(el => {
|
||||||
|
observer.observe(el);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
function openChatWidget() {
|
||||||
|
// This function attempts to open the chat widget.
|
||||||
|
// The AnyChat script might create a global object to control the widget.
|
||||||
|
if (typeof AnyChat !== 'undefined' && AnyChat.open) {
|
||||||
|
AnyChat.open();
|
||||||
|
} else {
|
||||||
|
console.log('Chat widget function not found. The widget might open automatically or requires a different function call.');
|
||||||
|
// As a fallback, we can try to find the launcher button and click it.
|
||||||
|
const chatLauncher = document.getElementById('anychat-launcher'); // This ID is a guess
|
||||||
|
if(chatLauncher) chatLauncher.click();
|
||||||
|
}
|
||||||
|
}
|
||||||
259
index.php
259
index.php
@ -1,150 +1,119 @@
|
|||||||
<?php
|
<!DOCTYPE html>
|
||||||
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>
|
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>New Style</title>
|
<title>Housing Assistance Fast</title>
|
||||||
<?php
|
<meta name="description" content="A non-profit website dedicated to helping homeless and at-risk individuals find housing in Florida.">
|
||||||
// Read project preview data from environment
|
<meta name="keywords" content="housing assistance florida, homeless help miami, non-profit housing, emergency shelter florida, housing resources, affordable housing florida, Built with Flatlogic Generator">
|
||||||
$projectDescription = $_SERVER['PROJECT_DESCRIPTION'] ?? '';
|
<meta property="og:title" content="Housing Assistance Fast">
|
||||||
$projectImageUrl = $_SERVER['PROJECT_IMAGE_URL'] ?? '';
|
<meta property="og:description" content="A non-profit website dedicated to helping homeless and at-risk individuals find housing in Florida.">
|
||||||
?>
|
<meta property="og:image" content="">
|
||||||
<?php if ($projectDescription): ?>
|
<meta name="twitter:card" content="summary_large_image">
|
||||||
<!-- Meta description -->
|
<meta name="twitter:image" content="">
|
||||||
<meta name="description" content='<?= htmlspecialchars($projectDescription) ?>' />
|
|
||||||
<!-- Open Graph meta tags -->
|
<!-- Bootstrap 5.3 CDN -->
|
||||||
<meta property="og:description" content="<?= htmlspecialchars($projectDescription) ?>" />
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||||
<!-- Twitter meta tags -->
|
<!-- Bootstrap Icons -->
|
||||||
<meta property="twitter:description" content="<?= htmlspecialchars($projectDescription) ?>" />
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
<?php endif; ?>
|
<!-- Google Fonts -->
|
||||||
<?php if ($projectImageUrl): ?>
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||||
<!-- Open Graph image -->
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||||
<meta property="og:image" content="<?= htmlspecialchars($projectImageUrl) ?>" />
|
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Roboto:wght@400;500&display=swap" rel="stylesheet">
|
||||||
<!-- Twitter image -->
|
<!-- Custom CSS -->
|
||||||
<meta property="twitter:image" content="<?= htmlspecialchars($projectImageUrl) ?>" />
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
||||||
<?php endif; ?>
|
|
||||||
<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>
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<main>
|
|
||||||
<div class="card">
|
<!-- Header -->
|
||||||
<h1>Analyzing your requirements and generating your website…</h1>
|
<nav class="navbar navbar-expand-lg navbar-light bg-light fixed-top">
|
||||||
<div class="loader" role="status" aria-live="polite" aria-label="Applying initial changes">
|
<div class="container">
|
||||||
<span class="sr-only">Loading…</span>
|
<a class="navbar-brand fw-bold" href="#">Florida Housing</a>
|
||||||
</div>
|
<div class="d-flex align-items-center">
|
||||||
<p class="hint"><?= ($_SERVER['HTTP_HOST'] ?? '') === 'appwizzy.com' ? 'AppWizzy' : 'Flatlogic' ?> AI is collecting your requirements and applying the first changes.</p>
|
<span id="theme-toggle" class="nav-link theme-toggle"><i class="bi bi-moon-fill"></i></span>
|
||||||
<p class="hint">This page will update automatically as the plan is implemented.</p>
|
</div>
|
||||||
<p>Runtime: PHP <code><?= htmlspecialchars($phpVersion) ?></code> — UTC <code><?= htmlspecialchars($now) ?></code></p>
|
</div>
|
||||||
</div>
|
</nav>
|
||||||
</main>
|
|
||||||
<footer>
|
<!-- Hero Section -->
|
||||||
Page updated: <?= htmlspecialchars($now) ?> (UTC)
|
<header class="hero text-center">
|
||||||
</footer>
|
<div class="container">
|
||||||
|
<h1 class="display-4 fw-bold">Find a Safe Place to Call Home</h1>
|
||||||
|
<p class="lead my-4">Immediate housing assistance for individuals and families in Florida.</p>
|
||||||
|
<button class="btn btn-primary btn-lg" onclick="openChatWidget()">Get Help Now</button>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<!-- Services Section -->
|
||||||
|
<section id="services" class="section">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="text-center mb-5">How We Can Help</h2>
|
||||||
|
<div class="row g-4">
|
||||||
|
<div class="col-md-4">
|
||||||
|
<div class="card h-100 floating-card text-center">
|
||||||
|
<div class="card-body p-5">
|
||||||
|
<h3 class="card-title">Emergency Shelter</h3>
|
||||||
|
<p>Connect with shelters for immediate, temporary housing.</p>
|
||||||
|
<button class="btn btn-outline-primary" onclick="openChatWidget()">Find Shelter</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4">
|
||||||
|
<div class="card h-100 floating-card text-center">
|
||||||
|
<div class="card-body p-5">
|
||||||
|
<h3 class="card-title">Housing Resources</h3>
|
||||||
|
<p>Access information on affordable housing and support programs.</p>
|
||||||
|
<button class="btn btn-outline-primary" onclick="openChatWidget()">Get Resources</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4">
|
||||||
|
<div class="card h-100 floating-card text-center">
|
||||||
|
<div class="card-body p-5">
|
||||||
|
<h3 class="card-title">Talk to Someone</h3>
|
||||||
|
<p>Our team is available 24/7 to help you find the right solution.</p>
|
||||||
|
<button class="btn btn-outline-primary" onclick="openChatWidget()">Chat Now</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Resources Placeholder Section -->
|
||||||
|
<section id="resources" class="section bg-light">
|
||||||
|
<div class="container text-center">
|
||||||
|
<h2 class="mb-4">Find Resources Near You</h2>
|
||||||
|
<p class="lead mb-4">We'll soon have a map to help you find shelters and services in your area.</p>
|
||||||
|
<div class="p-5 border rounded-3" style="background-color: #e9ecef;">
|
||||||
|
<p class="h4">Interactive Map Coming Soon!</p>
|
||||||
|
<p>This area will display a map with filterable resources based on your location.</p>
|
||||||
|
</div>
|
||||||
|
<button class="btn btn-primary btn-lg mt-4" onclick="openChatWidget()">Get Help Now</button>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Footer -->
|
||||||
|
<footer class="py-4">
|
||||||
|
<div class="container text-center">
|
||||||
|
<p>© <?php echo date("Y"); ?> Florida Housing. All Rights Reserved.</p>
|
||||||
|
<p>A non-profit dedicated to ending homelessness in Florida.</p>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<!-- Bootstrap 5.3 JS -->
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
||||||
|
<!-- Custom JS -->
|
||||||
|
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
||||||
|
|
||||||
|
<!-- AnyChat Widget Script -->
|
||||||
|
<script>(function(d, s, id){
|
||||||
|
var js, fjs = d.getElementsByTagName(s)[0];
|
||||||
|
if (d.getElementById(id)) return;
|
||||||
|
js = d.createElement(s); js.id = id;
|
||||||
|
js.src = 'https://api.anychat.one/widget/0de9ecd3-ff1f-3d0e-950f-c5d1427ad902/livechat-js?r=' + encodeURIComponent(window.location);
|
||||||
|
fjs.parentNode.insertBefore(js, fjs);
|
||||||
|
}(document, 'script', 'contactus-jssdk'));</script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
Loading…
x
Reference in New Issue
Block a user