Files
dishpix/app/page.tsx
2025-08-13 16:43:18 +02:00

70 lines
3.1 KiB
TypeScript

import Image from "next/image";
import { Button } from "@/components/ui/button";
import { Header } from "@/components/ui/header";
export default function Home() {
return (
<div>
<main className="min-h-80" style={{ background: 'linear-gradient(180deg, #fff 10%, #eef0f7)' }}>
<section className="max-w-4xl mx-auto px-4 py-24">
<h1 className="text-5xl font-extrabold text-center text-gray-900">
Enhance Your Food Photos with Dishpix AI
</h1>
<p className="mt-6 text-xl text-center text-gray-600 max-w-2xl mx-auto">
Dishpix is the perfect website for people who want to take their food photography to the next level. Whether you're a professional chef, a food blogger, or just someone who loves capturing delicious moments, Dishpix offers tools and features to help you create stunning food photos.
</p>
</section>
</main>
{/*
Add a section here to display before/after photo and demonstrate how the application works
*/}
<section className="w-full" style={{ backgroundColor: 'rgb(248, 249, 254)' }}>
<div className="max-w-screen-xl mx-auto py-24">
<h2 className="text-3xl font-bold text-center text-gray-800 mb-4">See how Dishpix can help you improve your content online.</h2>
<div className="flex flex-col items-center">
<h3 className="text-lg font-semibold text-center text-gray-700 mb-2">
Photo Comparison
</h3>
<div className="flex justify-center space-x-4 w-full">
<div className="w-1/4 p-4 bg-gray-100 rounded-lg shadow-md border-2 border-solid border-color-indigo-500">
<h4 className="text-sm font-semibold text-center text-gray-700 mb-1">
Before
</h4>
<Image
src="/before-photo.png"
alt="Before photo"
width={150}
height={113}
className="w-full h-auto rounded"
/>
</div>
<div className="w-1/4 p-4 bg-gray-100 rounded-lg shadow-md border-2 border-solid border-color-indigo-500">
<h4 className="text-sm font-semibold text-center text-gray-700 mb-1">
After
</h4>
<Image
src="/after-photo.png"
alt="After photo"
width={150}
height={113}
className="w-full h-auto rounded"
/>
</div>
</div>
<div className="mt-8 text-center">
<h3 className="text-lg font-semibold text-gray-700 mb-2">
What Happened?
</h3>
<p className="text-gray-600">
Dishpix AI transforms ordinary food photos into stunning, professional-quality images. Our advanced algorithms enhance colors, adjust lighting, and add artistic touches to make your food photos look incredible. Simply upload your photo and let the magic happen!
</p>
</div>
</div>
</div>
</section>
</div>
);
}