2.5 KB
home.html
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
    {{partial "head"}}
    <title>Welcome - {{site_name}}</title>
</head>
<body class="min-h-screen bg-base-200 flex flex-col">
    {{partial "header"}}
    <main class="container mx-auto p-8 flex-1">
        <div class="hero min-h-[60vh]">
            <div class="hero-content text-center">
                <div class="max-w-2xl">
                    <h1 class="text-5xl font-bold">Welcome to Your New Website</h1>
                    <p class="py-6 text-lg text-base-content/70">
                        This is your new website powered by an AI-native CMS.
                        Edit this page from the admin dashboard or ask the AI assistant to help you create content.
                    </p>
                    <a href="/about" class="btn btn-primary">Learn More</a>
                </div>
            </div>
        </div>
        <div class="py-16">
            <div class="text-center mb-12">
                <h2 class="text-3xl font-bold">Features</h2>
                <p class="text-base-content/70 mt-2">Everything you need to build your website</p>
            </div>
            <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
                <div class="card bg-base-100 shadow-xl">
                    <div class="card-body items-center text-center">
                        <div class="text-4xl mb-4">&#9998;</div>
                        <h3 class="card-title">Easy Editing</h3>
                        <p class="text-base-content/70">Create and edit pages with a simple interface</p>
                    </div>
                </div>
                <div class="card bg-base-100 shadow-xl">
                    <div class="card-body items-center text-center">
                        <div class="text-4xl mb-4">&#129302;</div>
                        <h3 class="card-title">AI Powered</h3>
                        <p class="text-base-content/70">Let AI help you generate and improve content</p>
                    </div>
                </div>
                <div class="card bg-base-100 shadow-xl">
                    <div class="card-body items-center text-center">
                        <div class="text-4xl mb-4">&#128640;</div>
                        <h3 class="card-title">Fast & Modern</h3>
                        <p class="text-base-content/70">Built with modern technology for speed</p>
                    </div>
                </div>
            </div>
        </div>
    </main>
    {{partial "footer"}}
</body>
</html>
← Back