Merge version_2_1776446728106 into main #4

Merged
bender merged 1 commits from version_2_1776446728106 into main 2026-04-17 17:25:44 +00:00

70
src/app/features/page.tsx Normal file
View File

@@ -0,0 +1,70 @@
```tsx
import React from 'react';
const Features: React.FC = () => {
return (
<div className="min-h-screen bg-gray-50 flex flex-col items-center justify-center py-12 px-4 sm:px-6 lg:px-8">
<div className="max-w-4xl mx-auto text-center">
<h1 className="text-4xl font-extrabold text-gray-900 sm:text-5xl md:text-6xl">
Powerful Features for Your Success
</h1>
<p className="mt-6 text-xl text-gray-600">
Discover how our innovative solutions can streamline your workflow, boost productivity, and help you achieve your goals.
</p>
<div className="mt-12 grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-3">
{/* Feature 1 */}
<div className="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition-shadow duration-300">
<h3 className="text-xl font-semibold text-gray-900">Intuitive Dashboard</h3>
<p className="mt-4 text-gray-600">
Get a clear overview of your data with our easy-to-use and customizable dashboard.
</p>
</div>
{/* Feature 2 */}
<div className="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition-shadow duration-300">
<h3 className="text-xl font-semibold text-gray-900">Real-time Analytics</h3>
<p className="mt-4 text-gray-600">
Make informed decisions with up-to-the-minute insights and detailed reports.
</p>
</div>
{/* Feature 3 */}
<div className="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition-shadow duration-300">
<h3 className="text-xl font-semibold text-gray-900">Seamless Integration</h3>
<p className="mt-4 text-gray-600">
Connect effortlessly with your favorite tools and existing workflows.
</p>
</div>
{/* Feature 4 */}
<div className="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition-shadow duration-300">
<h3 className="text-xl font-semibold text-gray-900">Scalable Architecture</h3>
<p className="mt-4 text-gray-600">
Grow without limits. Our platform is built to scale with your needs.
</p>
</div>
{/* Feature 5 */}
<div className="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition-shadow duration-300">
<h3 className="text-xl font-semibold text-gray-900">24/7 Support</h3>
<p className="mt-4 text-gray-600">
Our dedicated team is always here to help you every step of the way.
</p>
</div>
{/* Feature 6 */}
<div className="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition-shadow duration-300">
<h3 className="text-xl font-semibold text-gray-900">Secure & Reliable</h3>
<p className="mt-4 text-gray-600">
Your data is safe with us. We prioritize security and uptime.
</p>
</div>
</div>
</div>
</div>
);
};
export default Features;
```