readysite / website / internal / content / seed / templates / about.html
1.4 KB
about.html
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
    {{partial "head"}}
    <title>About - {{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="max-w-3xl mx-auto">
            <h1 class="text-4xl font-bold mb-6">About Us</h1>
            <div class="prose prose-lg">
                <p class="lead text-xl text-base-content/80">
                    We're building something amazing. This is your about page where you can tell your story.
                </p>
                <h2 class="text-2xl font-semibold mt-8 mb-4">Our Mission</h2>
                <p class="text-base-content/70">
                    Share your mission and values here. What drives you? What problems are you solving?
                    Edit this page from the admin dashboard to make it your own.
                </p>
                <h2 class="text-2xl font-semibold mt-8 mb-4">Our Team</h2>
                <p class="text-base-content/70">
                    Introduce your team members here. You can also create a Collection to manage team profiles dynamically.
                </p>
            </div>
            <div class="mt-12">
                <a href="/contact" class="btn btn-primary">Get in Touch</a>
            </div>
        </div>
    </main>
    {{partial "footer"}}
</body>
</html>
← Back