diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index 2d21ac9..55accea 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -7,7 +7,7 @@ import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import PricingCardThree from '@/components/sections/pricing/PricingCardThree'; -export default function LandingPage() { +export default function ServicesPage() { return ( @@ -50,26 +39,14 @@ export default function LandingPage() { @@ -78,42 +55,12 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="default" useInvertedBackground={true} - plans={[ - { - id: "basic", - price: "$10-$15", - name: "Breakfast Specials", - buttons: [ - { - text: "See Full Menu", - href: "/services", - }, - ], - features: [ - "Pancakes", - "Omelettes", - "Coffee", - ], - }, - { - id: "pro", - price: "$12-$20", - name: "Lunch Classics", - buttons: [ - { - text: "See Full Menu", - href: "/services", - }, - ], - features: [ - "Burgers", - "Homemade Soups", - "Wraps", - ], - }, - ]} title="Budget-Friendly Dining" description="Great portions, great prices." + plans={[ + { id: "basic", price: "$10-$15", name: "Breakfast Specials", buttons: [{ text: "See Full Menu", href: "/services" }], features: ["Pancakes", "Omelettes", "Coffee"] }, + { id: "pro", price: "$12-$20", name: "Lunch Classics", buttons: [{ text: "See Full Menu", href: "/services" }], features: ["Burgers", "Homemade Soups", "Wraps"] }, + ]} /> @@ -121,40 +68,12 @@ export default function LandingPage() { ); -} +} \ No newline at end of file