# yatra/3.0.2.8/resources/js/components/trip-form/sections/SEOSection.tsx

Yatra – Travel Booking &amp; Tour Operator Software, version 3.0.2.8. 31 lines.

- Page: https://pluginprobe.com/plugins/yatra/3.0.2.8/code/resources/js/components/trip-form/sections/SEOSection.tsx
- Raw: https://pluginprobe.com/plugins/yatra/3.0.2.8/raw/resources/js/components/trip-form/sections/SEOSection.tsx
- Modified: 2026-04-14T03:47:24+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/yatra/3.0.2.8/code/resources/js/components/trip-form/sections/SEOSection.tsx#L10-L20`.

```tsx
/**
 * SEO Section Component
 * Handles: SEO settings
 *
 * This is a placeholder - extract content from TripForm.tsx case 'seo'
 */

import React from "react";
import { Search } from "lucide-react";
import { TripFormSectionProps } from "../types";
import { SectionHeader } from "../shared/SectionHeader";

export const SEOSection: React.FC<TripFormSectionProps> = () => {
  // TODO: Extract SEO section content from TripForm.tsx (lines ~3971-4018)

  return (
    <div className="space-y-4">
      <SectionHeader
        icon={Search}
        title="SEO Settings"
        description="Optimize your trip page for search engines"
      />

      {/* TODO: Add SEO form fields */}
      <p className="text-sm text-gray-500">
        Section content to be extracted from TripForm.tsx
      </p>
    </div>
  );
};

```
