restinpeacetech / index.html
shaycat's picture
Perfect — since you’re using DeepSite (AI app builder) to generate your SaaS product, the key is to feed it a rich, structured master prompt that covers every detail: app purpose, user roles, data structure, integrations, automations, and UI requirements.
33f7750 verified
Raw
History Blame Contribute Delete
15.7 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Eternal Records - Modern Cemetery Management</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
<style>
.hero-gradient {
background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
</style>
</head>
<body class="font-sans antialiased text-gray-800">
<!-- Navigation -->
<nav class="bg-white shadow-sm fixed w-full z-10">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<i data-feather="map" class="h-8 w-8 text-blue-600"></i>
<span class="ml-2 text-xl font-bold text-gray-900">Eternal Records</span>
</div>
</div>
<div class="hidden md:ml-6 md:flex md:items-center space-x-8">
<a href="#" class="text-gray-900 hover:text-blue-600 px-3 py-2 text-sm font-medium">Features</a>
<a href="#" class="text-gray-900 hover:text-blue-600 px-3 py-2 text-sm font-medium">Pricing</a>
<a href="#" class="text-gray-900 hover:text-blue-600 px-3 py-2 text-sm font-medium">Documentation</a>
<a href="#" class="text-gray-900 hover:text-blue-600 px-3 py-2 text-sm font-medium">About</a>
</div>
<div class="flex items-center">
<a href="#" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md text-sm font-medium">Sign In</a>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<div id="hero" class="hero-gradient pt-24 pb-32 relative overflow-hidden">
<div class="absolute inset-0 opacity-20">
<div id="vanta-globe"></div>
</div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10">
<div class="lg:grid lg:grid-cols-12 lg:gap-8">
<div class="sm:text-center md:max-w-2xl md:mx-auto lg:col-span-6 lg:text-left">
<h1 class="text-4xl tracking-tight font-extrabold text-white sm:text-5xl md:text-6xl">
<span class="block">Digitizing Memorial</span>
<span class="block text-blue-200">Histories</span>
</h1>
<p class="mt-3 text-base text-blue-100 sm:mt-5 sm:text-lg sm:max-w-xl sm:mx-auto md:mt-5 md:text-xl lg:mx-0">
Modern cemetery management software that transforms paper records from the 1800s into searchable digital archives with interactive maps.
</p>
<div class="mt-8 sm:max-w-lg sm:mx-auto sm:text-center lg:text-left lg:mx-0">
<div class="flex flex-col sm:flex-row gap-4">
<a href="#" class="px-8 py-3 border border-transparent text-base font-medium rounded-md text-blue-700 bg-white hover:bg-blue-50 md:py-4 md:text-lg md:px-10">
Get Started
</a>
<a href="#" class="px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-blue-500 bg-opacity-60 hover:bg-opacity-70 md:py-4 md:text-lg md:px-10">
Live Demo
</a>
</div>
</div>
</div>
<div class="mt-12 relative sm:max-w-lg sm:mx-auto lg:mt-0 lg:max-w-none lg:mx-0 lg:col-span-6 lg:flex lg:items-center">
<div class="relative mx-auto w-full rounded-lg shadow-lg lg:max-w-md">
<img class="w-full rounded-lg" src="http://static.photos/technology/1024x576/42" alt="Dashboard preview">
</div>
</div>
</div>
</div>
</div>
<!-- Features Section -->
<div class="py-12 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-base text-blue-600 font-semibold tracking-wide uppercase">Features</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
Everything cemetery managers need
</p>
</div>
<div class="mt-10">
<div class="grid grid-cols-1 gap-10 sm:grid-cols-2 lg:grid-cols-3">
<!-- Feature 1 -->
<div class="feature-card bg-gray-50 p-6 rounded-lg transition duration-300 ease-in-out">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white">
<i data-feather="book-open"></i>
</div>
<div class="mt-4">
<h3 class="text-lg font-medium text-gray-900">OCR Digitization</h3>
<p class="mt-2 text-base text-gray-500">
Convert scanned paper records from the 1800s into searchable digital archives with AI-powered OCR.
</p>
</div>
</div>
<!-- Feature 2 -->
<div class="feature-card bg-gray-50 p-6 rounded-lg transition duration-300 ease-in-out">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white">
<i data-feather="map"></i>
</div>
<div class="mt-4">
<h3 class="text-lg font-medium text-gray-900">Interactive Mapping</h3>
<p class="mt-2 text-base text-gray-500">
Visualize plots with color-coded statuses and clickable details. GPS integration for large cemeteries.
</p>
</div>
</div>
<!-- Feature 3 -->
<div class="feature-card bg-gray-50 p-6 rounded-lg transition duration-300 ease-in-out">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white">
<i data-feather="users"></i>
</div>
<div class="mt-4">
<h3 class="text-lg font-medium text-gray-900">Public Portal</h3>
<p class="mt-2 text-base text-gray-500">
Families can search records, view memorials, and request services like flower placements.
</p>
</div>
</div>
<!-- Feature 4 -->
<div class="feature-card bg-gray-50 p-6 rounded-lg transition duration-300 ease-in-out">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white">
<i data-feather="clipboard"></i>
</div>
<div class="mt-4">
<h3 class="text-lg font-medium text-gray-900">Maintenance Tracking</h3>
<p class="mt-2 text-base text-gray-500">
Assign and track caretaker tasks like headstone cleaning or plot verification.
</p>
</div>
</div>
<!-- Feature 5 -->
<div class="feature-card bg-gray-50 p-6 rounded-lg transition duration-300 ease-in-out">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white">
<i data-feather="database"></i>
</div>
<div class="mt-4">
<h3 class="text-lg font-medium text-gray-900">Secure Cloud Storage</h3>
<p class="mt-2 text-base text-gray-500">
Encrypted document storage with audit trails for all record changes and updates.
</p>
</div>
</div>
<!-- Feature 6 -->
<div class="feature-card bg-gray-50 p-6 rounded-lg transition duration-300 ease-in-out">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white">
<i data-feather="credit-card"></i>
</div>
<div class="mt-4">
<h3 class="text-lg font-medium text-gray-900">Subscription Management</h3>
<p class="mt-2 text-base text-gray-500">
Multi-tenant SaaS with tiered pricing and Stripe integration for seamless billing.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Testimonial Section -->
<div class="bg-blue-50 py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-base text-blue-600 font-semibold tracking-wide uppercase">Trusted by Cemetery Professionals</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
What our customers say
</p>
</div>
<div class="mt-10 bg-white p-8 rounded-lg shadow-sm max-w-3xl mx-auto">
<div class="flex items-center">
<img class="h-12 w-12 rounded-full" src="http://static.photos/people/200x200/5" alt="Testimonial">
<div class="ml-4">
<p class="text-gray-900 font-medium">Sarah Johnson</p>
<p class="text-gray-500 text-sm">Oakwood Cemetery</p>
</div>
</div>
<div class="mt-4">
<p class="text-gray-600">
"Eternal Records transformed our 150-year-old cemetery from paper chaos to digital order. We can now locate any burial in seconds and families love the memorial pages."
</p>
</div>
</div>
</div>
</div>
<!-- CTA Section -->
<div class="bg-white py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
Ready to modernize your cemetery records?
</h2>
<p class="mt-4 max-w-2xl text-xl text-gray-500 mx-auto">
Start your free trial today. No credit card required.
</p>
<div class="mt-8 flex justify-center">
<div class="inline-flex rounded-md shadow">
<a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-white bg-blue-600 hover:bg-blue-700">
Get Started for Free
<i data-feather="arrow-right" class="ml-2 h-4 w-4"></i>
</a>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-gray-800">
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8">
<div>
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Product</h3>
<div class="mt-4 space-y-4">
<a href="#" class="text-base text-gray-300 hover:text-white">Features</a>
<a href="#" class="text-base text-gray-300 hover:text-white block">Pricing</a>
<a href="#" class="text-base text-gray-300 hover:text-white block">API</a>
</div>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Resources</h3>
<div class="mt-4 space-y-4">
<a href="#" class="text-base text-gray-300 hover:text-white">Documentation</a>
<a href="#" class="text-base text-gray-300 hover:text-white block">Guides</a>
<a href="#" class="text-base text-gray-300 hover:text-white block">Blog</a>
</div>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Company</h3>
<div class="mt-4 space-y-4">
<a href="#" class="text-base text-gray-300 hover:text-white">About</a>
<a href="#" class="text-base text-gray-300 hover:text-white block">Contact</a>
<a href="#" class="text-base text-gray-300 hover:text-white block">Careers</a>
</div>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Legal</h3>
<div class="mt-4 space-y-4">
<a href="#" class="text-base text-gray-300 hover:text-white">Privacy</a>
<a href="#" class="text-base text-gray-300 hover:text-white block">Terms</a>
<a href="#" class="text-base text-gray-300 hover:text-white block">GDPR</a>
</div>
</div>
</div>
<div class="mt-8 pt-8 border-t border-gray-700 flex justify-between items-center">
<p class="text-base text-gray-400">© 2023 Eternal Records. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="facebook"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="linkedin"></i>
</a>
</div>
</div>
</div>
</footer>
<script>
// Initialize Vanta.js globe
VANTA.GLOBE({
el: "#vanta-globe",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x3b82f6,
backgroundColor: 0x0
});
// Initialize feather icons
feather.replace();
</script>
</body>
</html>