Bob AI: Deleted the pricing section.

This commit is contained in:
kudinDmitriyUp
2026-06-15 12:07:34 +00:00
parent 5b50a31827
commit af5281c8a6
2 changed files with 0 additions and 42 deletions

View File

@@ -7,7 +7,6 @@ import React from 'react';
import HeroSection from './HomePage/sections/Hero';
import AboutSection from './HomePage/sections/About';
import ProductsSection from './HomePage/sections/Products';
import PricingSection from './HomePage/sections/Pricing';
import FaqSection from './HomePage/sections/Faq';
import ContactSection from './HomePage/sections/Contact';
@@ -20,7 +19,6 @@ export default function HomePage(): React.JSX.Element {
<ProductsSection />
<PricingSection />
<FaqSection />

View File

@@ -1,40 +0,0 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "pricing" section.
import React from 'react';
import PricingCenteredCards from '@/components/sections/pricing/PricingCenteredCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function PricingSection(): React.JSX.Element {
return (
<div id="pricing" data-section="pricing">
<SectionErrorBoundary name="pricing">
<PricingCenteredCards
tag="코스 요리 안내"
title="마중 코스 요리 (2인 이상 주문)"
description="복마중의 품격이 담긴 코스 메뉴입니다."
plans={[
{
tag: "정식", price: "₩20,000", description: "마중 복정식", features: [
"복껍질무침", "참복회", "복튀김", "참복지리"],
primaryButton: {
text: "선택", href: "#contact"},
},
{
tag: "코스", price: "₩50,000", description: "마중 스페셜 코스", features: [
"참복사시미", "참치회", "랍스타", "복불고기"],
primaryButton: {
text: "선택", href: "#contact"},
},
{
tag: "", price: "₩99,000", description: "참복 ", features: [
"참복사시미", "혼마구로 배꼽살", "살아있는 지리"],
primaryButton: {
text: "선택", href: "#contact"},
},
]}
/>
</SectionErrorBoundary>
</div>
);
}