cooking/app/about/page.tsx
2026-02-08 23:12:47 -08:00

59 lines
2.1 KiB
TypeScript

import type { Metadata } from 'next';
export const metadata: Metadata = {
title: 'About - Cooking',
description: 'Learn more about our recipe collection',
};
export default function AboutPage() {
return (
<div className="max-w-3xl space-y-8">
<div className="space-y-4">
<h1 className="text-4xl font-bold text-gray-900 dark:text-white">
About
</h1>
<p className="text-lg text-gray-600 dark:text-gray-400">
Welcome to our content-first recipe site
</p>
</div>
<div className="prose dark:prose-invert max-w-none">
<section className="space-y-4">
<h2 className="text-2xl font-semibold text-gray-900 dark:text-white">
Our Mission
</h2>
<p className="text-gray-600 dark:text-gray-400">
We believe cooking should be accessible, enjoyable, and creative. Our goal is to provide
high-quality recipes with clear instructions and beautiful photography to inspire home cooks
everywhere.
</p>
</section>
<section className="space-y-4 pt-6">
<h2 className="text-2xl font-semibold text-gray-900 dark:text-white">
Content Structure
</h2>
<p className="text-gray-600 dark:text-gray-400">
Each recipe is organized in its own folder with:
</p>
<ul className="list-disc list-inside space-y-2 text-gray-600 dark:text-gray-400 ml-4">
<li>MDX file with recipe content and instructions</li>
<li>metadata.json for tags and organization</li>
<li>Assets folder for images and other media</li>
</ul>
</section>
<section className="space-y-4 pt-6">
<h2 className="text-2xl font-semibold text-gray-900 dark:text-white">
Technology
</h2>
<p className="text-gray-600 dark:text-gray-400">
Built with modern web technologies including Next.js, React, TypeScript, and Tailwind CSS
to ensure fast performance and excellent SEO.
</p>
</section>
</div>
</div>
);
}