| 1 |
/** |
| 2 |
* Overview Section Component |
| 3 |
* Handles: Basic info, highlights, rich content, classification |
| 4 |
* |
| 5 |
* This is a placeholder - extract content from TripForm.tsx case 'overview' |
| 6 |
*/ |
| 7 |
|
| 8 |
import React from "react"; |
| 9 |
import { FileText } from "lucide-react"; |
| 10 |
import { TripFormSectionProps } from "../types"; |
| 11 |
import { SectionHeader } from "../shared/SectionHeader"; |
| 12 |
|
| 13 |
export const OverviewSection: React.FC<TripFormSectionProps> = () => { |
| 14 |
// TODO: Extract overview section content from TripForm.tsx |
| 15 |
// This section has tabs: basic, highlights, details, rich-content, classification |
| 16 |
|
| 17 |
return ( |
| 18 |
<div className="space-y-4"> |
| 19 |
<SectionHeader |
| 20 |
icon={FileText} |
| 21 |
title="Trip Overview" |
| 22 |
description="Basic information, highlights, and trip details" |
| 23 |
/> |
| 24 |
|
| 25 |
{/* TODO: Add tab navigation and content */} |
| 26 |
<p className="text-sm text-gray-500"> |
| 27 |
Section content to be extracted from TripForm.tsx |
| 28 |
</p> |
| 29 |
</div> |
| 30 |
); |
| 31 |
}; |
| 32 |
|